Skip to content

Commit

Permalink
Merge pull request #111 from SzymCode/dev
Browse files Browse the repository at this point in the history
Dev
  • Loading branch information
SzymCode committed Aug 20, 2024
2 parents 987f10a + a5676f1 commit 27aa741
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion atomic/_old_structure/sass/styles/pages/home/start.scss
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,21 @@

.chartsImage {
position: relative;
top: 40px;
top: 50px;

img {
width: 100%;
max-width: 500px;
animation: levitate 3s ease-in-out infinite;
}
}

@keyframes levitate {
0%, 100% {
transform: translateY(0);
}
50% {
transform: translateY(-20px);
}
}

Expand Down

0 comments on commit 27aa741

Please sign in to comment.