Skip to content
Snippets Groups Projects
Commit d9121b10 authored by Joshua Randall's avatar Joshua Randall
Browse files

added some delayed fade in animations

parent 049a8a6c
No related branches found
No related tags found
No related merge requests found
...@@ -4,9 +4,9 @@ body { ...@@ -4,9 +4,9 @@ body {
// display: flex; // display: flex;
} }
// .app{ .app{
animation: fade-in 0.3s ease-in forwards;
// } }
.app-container { .app-container {
margin-top: 40px; margin-top: 40px;
position: relative; // Ensure container acts as a positioning context position: relative; // Ensure container acts as a positioning context
...@@ -52,7 +52,8 @@ body { ...@@ -52,7 +52,8 @@ body {
} }
.video-details{ .video-details{
opacity: 0;
animation: fade-in 0.3s 0.2s ease-in forwards;
align-items: flex-end; align-items: flex-end;
justify-content: flex-end; justify-content: flex-end;
width: 100%; width: 100%;
...@@ -77,6 +78,8 @@ body { ...@@ -77,6 +78,8 @@ body {
justify-content: space-between; justify-content: space-between;
align-items: center; align-items: center;
gap: 10px; gap: 10px;
opacity: 0;
animation: fade-in 0.3s 0.2s ease-in forwards;
} }
.video-stats{ .video-stats{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment