Files
medusa-store/www/apps/resources/app/globals.css
Shahed Nasser 35afa04a93 docs: migrate Kapa (#10198)
* docs: migrate kapa

* remove unused dependency

* fix isbrowser
2024-11-21 15:05:50 +02:00

42 lines
678 B
CSS

@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
html {
@apply antialiased;
text-rendering: optimizeLegibility;
overscroll-behavior-y: none;
}
body {
@apply overflow-x-hidden;
overscroll-behavior-y: none;
}
#main {
overscroll-behavior-y: contain;
}
*::selection {
@apply bg-medusa-bg-highlight;
}
* {
scrollbar-color: var(--docs-border-base) var(--docs-bg-base);
}
aside * {
scrollbar-color: var(--docs-border-base) var(--docs-bg-subtle);
overscroll-behavior-y: contain;
}
body[data-modal="opened"] {
@apply !overflow-hidden;
}
}
.grecaptcha-badge {
visibility: hidden;
}