UNPKG

@slashid/react-primitives

Version:

Primitive components for the /id React SDK

40 lines (35 loc) 1.03 kB
import { style } from "@vanilla-extract/css"; import { publicVariables, theme } from "../../theme/theme.css"; export const container = style({ display: "flex", gap: "4px", justifyContent: "center", }); export const otpInput = style({ all: "unset", maxWidth: "64px", width: "100%", height: "auto", aspectRatio: "1/1", borderRadius: publicVariables.input.border.radius, boxSizing: "border-box", border: `1px solid ${publicVariables.input.border.color}`, backgroundColor: publicVariables.color.offset, fontSize: theme.font.size.base, fontWeight: theme.font.weight.semibold, fontFamily: publicVariables.font.fontFamily, color: publicVariables.color.foreground, textAlign: "center", "::placeholder": { color: publicVariables.color.placeholder, }, ":active": { border: `1px solid ${publicVariables.color.tertiary}`, }, ":focus": { border: `1px solid ${publicVariables.color.tertiary}`, }, ":hover": { border: `1px solid ${publicVariables.color.placeholder}`, }, });