commerce/app/[locale]/globals.css

39 lines
668 B
CSS

@tailwind base;
@tailwind components;
@tailwind utilities;
@supports (font: -apple-system-body) and (-webkit-appearance: none) {
img[loading='lazy'] {
clip-path: inset(0.6px);
}
}
/* BASE */
*,
*:before,
*:after {
box-sizing: inherit;
}
::-moz-selection {
/* Code for Firefox */
color: #ffffff;
background: #333333;
}
::selection {
color: #ffffff;
background: #333333;
}
html,
body {
@apply font-sans h-full bg-white text-high-contrast;
box-sizing: border-box;
touch-action: manipulation;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
overscroll-behavior-x: none;
}