mirror of
https://github.com/vercel/commerce.git
synced 2025-03-14 06:32:32 +00:00
33 lines
711 B
CSS
33 lines
711 B
CSS
@import 'tailwindcss';
|
|
|
|
@plugin "@tailwindcss/container-queries";
|
|
@plugin "@tailwindcss/typography";
|
|
|
|
@layer base {
|
|
*,
|
|
::after,
|
|
::before,
|
|
::backdrop,
|
|
::file-selector-button {
|
|
border-color: var(--color-gray-200, currentColor);
|
|
}
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
html {
|
|
color-scheme: dark;
|
|
}
|
|
}
|
|
|
|
@supports (font: -apple-system-body) and (-webkit-appearance: none) {
|
|
img[loading='lazy'] {
|
|
clip-path: inset(0.6px);
|
|
}
|
|
}
|
|
|
|
a,
|
|
input,
|
|
button {
|
|
@apply focus-visible:outline-hidden focus-visible:ring-2 focus-visible:ring-neutral-400 focus-visible:ring-offset-2 focus-visible:ring-offset-neutral-50 dark:focus-visible:ring-neutral-600 dark:focus-visible:ring-offset-neutral-900;
|
|
}
|