/
istok
/
idp_server
Обзор
Документация
Войти
/
istok
/
idp_server
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
dev
apps/client/src/features/container/ui/container.css.ts
34 строки
631 B
ArtemAstakhov
Move client to nextjs
22 ноя 2025, 22:42
22 ноя 2025, 22:42
35e7508
Код
Авторство
О чём код?
import { style, keyframes } from "@vanilla-extract/css"; const slideUp = keyframes({ from: { opacity: 0, transform: "translateY(20px)", }, to: { opacity: 1, transform: "translateY(0)", }, }); export const container = style({ background: "white", borderRadius: "16px", boxShadow: "0 20px 60px rgba(0, 0, 0, 0.3)", padding: "40px", width: "100%", animation: `${slideUp} 0.4s ease-out`, "@media": { "(max-width: 480px)": { padding: "24px", }, }, }); export const containerNarrow = style({ maxWidth: "420px", }); export const containerWide = style({ maxWidth: "520px", });