Files
medusa-store/www/apps/api-reference/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

62 lines
857 B
CSS

@tailwind base;
@tailwind components;
@tailwind utilities;
@layer base {
h1 {
@apply text-h1 mb-1;
}
h2 {
@apply text-h2 mb-1;
}
h3 {
@apply text-h3 mb-0.5;
}
h4 {
@apply text-h4 mb-0.5;
}
h1, h2, h3, h4 {
@apply text-medusa-fg-base;
}
hr {
@apply h-[1px] w-full border-0 bg-medusa-border-base my-2;
}
p, ul, ol {
@apply mb-1.5;
}
html {
@apply antialiased;
text-rendering: optimizeLegibility;
}
body {
@apply overflow-x-hidden;
}
*::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);
}
body[data-modal="opened"] {
@apply !overflow-hidden;
}
}
.grecaptcha-badge {
visibility: hidden;
}