Skip to content

Commit

Permalink
Bugfix corporation timezones (minmatarfleet#439)
Browse files Browse the repository at this point in the history
* Bugfix corporation timezones error

* Updated L34RN ships disposition
  • Loading branch information
beautifulmim authored Jun 4, 2024
1 parent 1f761fa commit 61e3a2d
Show file tree
Hide file tree
Showing 2 changed files with 44 additions and 5 deletions.
10 changes: 5 additions & 5 deletions frontend/app/src/components/blocks/L34rnSlide.astro
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ import CorporationSlide from '@components/blocks/CorporationSlide.astro';
top: 40%;
left: 5%;
height: auto;
width: 18%;
width: 21%;
z-index: 3;
transform: scale(0);
}
Expand Down Expand Up @@ -75,14 +75,14 @@ import CorporationSlide from '@components/blocks/CorporationSlide.astro';
@keyframes vigil {
from {
transform: scale(0);
top: 20%;
top: 35%;
left: 5%;
}

to {
transform: scale(1);
top: 4%;
left: 56%;
left: 52%;
}
}

Expand All @@ -95,8 +95,8 @@ import CorporationSlide from '@components/blocks/CorporationSlide.astro';

to {
transform: scale(1);
top: 44%;
left: 42%;
top: 41%;
left: 44%;
}
}

Expand Down
39 changes: 39 additions & 0 deletions frontend/app/src/styles/_animations.scss
Original file line number Diff line number Diff line change
Expand Up @@ -99,4 +99,43 @@
opacity: 0;
left: 75%;
}
}

@keyframes float {
0% {
transform: translatey(0px);
}
50% {
transform: translatey(-10px);
}
100% {
transform: translatey(0px);
}
}

@keyframes float_up {
0% {
transform: translatey(0px);
}
50% {
transform: translatey(10px);
}
100% {
transform: translatey(0px);
}
}

@keyframes float_up_down {
0% {
transform: translatey(0px);
}
25% {
transform: translatey(5px);
}
75% {
transform: translatey(-5px);
}
100% {
transform: translatey(0px);
}
}

0 comments on commit 61e3a2d

Please sign in to comment.