/
istok
/
idp_server
Обзор
Документация
Войти
/
istok
/
idp_server
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
dev
apps/client/src/shared/inline-alert/inline-alert.css.ts
33 строки
633 B
ArtemAstakhov
Move client to nextjs
22 ноя 2025, 22:42
22 ноя 2025, 22:42
35e7508
Код
Авторство
О чём код?
import { style, styleVariants } from "@vanilla-extract/css"; export const root = style({ padding: "12px 16px", borderRadius: "8px", width: "100%", marginBottom: "16px", }); export const alertVariant = styleVariants({ error: { backgroundColor: "var(--red-2)", border: "1px solid var(--red-6)", }, success: { backgroundColor: "var(--green-2)", border: "1px solid var(--green-6)", }, }); export const text = style({ fontSize: "15px", lineHeight: "1.5", }); export const textVariant = styleVariants({ error: { color: "var(--red-11)", }, success: { color: "var(--green-11)", }, });