mirror of
https://github.com/zoriya/v10.git
synced 2026-08-11 00:19:28 +00:00
22 lines
701 B
CSS
22 lines
701 B
CSS
@import 'tailwindcss';
|
|
|
|
/* TODO: Documentation for how this will work in the wild. */
|
|
@source "../../../packages/react";
|
|
|
|
@theme {
|
|
--font-sans:
|
|
InterVariable, ui-sans-serif, system-ui, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol',
|
|
'Noto Color Emoji';
|
|
}
|
|
|
|
:root {
|
|
font-feature-settings: 'cv01', 'ss01', 'ss03';
|
|
}
|
|
|
|
/* Make hocus (hover + focus-visible) variants */
|
|
@custom-variant hocus (&:is(:hover, :focus-visible));
|
|
@custom-variant group-hocus (&:is(:hover, :focus-visible) &);
|
|
@custom-variant peer-hocus (&:is(:hover, :focus-visible) ~ &);
|
|
/* Make reduced-transparency variant */
|
|
@custom-variant reduced-transparency @media (prefers-reduced-transparency: reduce);
|