This commit is contained in:
Mamalizz
2025-01-07 18:14:43 +03:30
77 changed files with 2711 additions and 456 deletions
+37 -1
View File
@@ -1,5 +1,6 @@
@import "tailwindcss";
@import "./animations.css";
@import "./other.utils.css";
@import "./typo.utils.css";
@import "./button.comp.css";
@@ -120,12 +121,16 @@
--breakpoint-xs: 480px;
/* ANIMATIONS */
--animate-marquee: marquee 20s linear infinite;
--animate-marquee: marquee 3s linear infinite;
--animate-slide-down: slideDown 300ms ease-out;
--animate-slide-up: slideUp 300ms ease-out;
--animate-overlay-show: overlayShow 150ms ease-in;
--animate-content-show: contentShow 150ms ease-in;
--animate-toast-hide: toastHide 100ms ease-in;
--animate-toast-in: toastSlideIn 600ms cubic-bezier(0.16, 1, 0.3, 1);
--animate-toast-out: toastSlideOut 200ms ease-out;
@keyframes marquee {
to {
transform: translateX(50%);
@@ -169,6 +174,37 @@
transform: scale(1);
}
}
@keyframes toastHide {
from {
opacity: 1;
}
to {
opacity: 0;
}
}
@keyframes toastSlideIn {
from {
opacity: 0;
transform: translateX(calc(100% + var(--viewport-padding)));
}
to {
opacity: 1;
transform: translateX(0);
}
}
@keyframes toastSlideOut {
from {
opacity: 1;
transform: translateX(var(--reka-toast-swipe-end-x));
}
to {
opacity: 0;
transform: translateX(calc(100% + var(--viewport-padding)));
}
}
}
/* CONTAINER */