Files
medusa-store/www/apps/ui/src/styles/globals.css
2023-09-26 15:08:30 +03:00

29 lines
426 B
CSS

@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
html {
-webkit-font-smoothing: antialiased;
}
.html {
@apply text-medusa-fg-base;
}
*::selection {
@apply bg-medusa-bg-highlight;
}
pre *::selection {
@apply !bg-medusa-code-text-highlight;
}
body {
@apply text-ui-fg-subtle;
}
body[data-modal="opened"] {
@apply !overflow-hidden text-ui-fg-base;
}
}