Migrate billing from Paddle to Lemon Squeezy
This commit is contained in:
@@ -34,7 +34,7 @@
|
||||
@keyframes guestCompassFlyIn {
|
||||
0% {
|
||||
opacity: 0;
|
||||
transform: translate(120px, 260px) scale(0.35) rotate(-90deg);
|
||||
transform: translate(0px, 240px) scale(0.35) rotate(-90deg);
|
||||
}
|
||||
60% {
|
||||
opacity: 1;
|
||||
@@ -52,6 +52,77 @@
|
||||
will-change: transform, opacity;
|
||||
}
|
||||
|
||||
@keyframes guestCompassFlyOut {
|
||||
0% {
|
||||
opacity: 1;
|
||||
transform: translate(0px, 0px) scale(1) rotate(0deg);
|
||||
}
|
||||
100% {
|
||||
opacity: 0;
|
||||
transform: translate(0px, 240px) scale(0.35) rotate(-90deg);
|
||||
}
|
||||
}
|
||||
|
||||
.guest-compass-flyout {
|
||||
animation: guestCompassFlyOut 520ms cubic-bezier(0.4, 0, 0.2, 1) both;
|
||||
transform-origin: center;
|
||||
will-change: transform, opacity;
|
||||
}
|
||||
|
||||
@keyframes guestTopbarTitleReveal {
|
||||
0% {
|
||||
opacity: 0;
|
||||
transform: translateY(10px) scale(0.98);
|
||||
filter: blur(6px);
|
||||
letter-spacing: 0.05em;
|
||||
}
|
||||
60% {
|
||||
opacity: 1;
|
||||
transform: translateY(0px) scale(1.03);
|
||||
filter: blur(0px);
|
||||
letter-spacing: 0.01em;
|
||||
}
|
||||
100% {
|
||||
opacity: 1;
|
||||
transform: translateY(0px) scale(1);
|
||||
filter: blur(0px);
|
||||
letter-spacing: 0em;
|
||||
}
|
||||
}
|
||||
|
||||
@keyframes guestTopbarChromaticSplit {
|
||||
0% {
|
||||
text-shadow: none;
|
||||
}
|
||||
40% {
|
||||
text-shadow: none;
|
||||
}
|
||||
100% {
|
||||
text-shadow: none;
|
||||
}
|
||||
}
|
||||
|
||||
.guest-topbar-title {
|
||||
position: relative;
|
||||
display: inline-block;
|
||||
animation:
|
||||
guestTopbarTitleReveal 1800ms cubic-bezier(0.2, 0.8, 0.2, 1) both,
|
||||
guestTopbarChromaticSplit 2200ms ease-out both;
|
||||
transform-origin: left center;
|
||||
will-change: transform, opacity, filter;
|
||||
}
|
||||
|
||||
.guest-topbar-title::after {
|
||||
content: '';
|
||||
display: none;
|
||||
}
|
||||
|
||||
.guest-topbar-title::after {
|
||||
content: '';
|
||||
position: absolute;
|
||||
display: none;
|
||||
}
|
||||
|
||||
@source '../views';
|
||||
@source '../../vendor/laravel/framework/src/Illuminate/Pagination/resources/views/*.blade.php';
|
||||
|
||||
|
||||
Reference in New Issue
Block a user