* docs: create a new UI docs project (#13233) * docs: create a new UI docs project * fix installation errors * docs: migrate UI docs content to new project (#13241) * Fix content * added examples for some components * finish adding examples * lint fix * fix build errors * delete empty files * path fixes + refactor * fix build error
49 lines
859 B
CSS
49 lines
859 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@layer base {
|
|
|
|
html {
|
|
@apply antialiased;
|
|
text-rendering: optimizeLegibility;
|
|
}
|
|
|
|
body {
|
|
@apply overflow-x-hidden;
|
|
}
|
|
|
|
*::selection {
|
|
@apply bg-medusa-bg-highlight;
|
|
}
|
|
|
|
*:not(.code-block-elm) {
|
|
scrollbar-color: var(--docs-border-base) var(--docs-bg-base);
|
|
}
|
|
|
|
.code-block-elm {
|
|
scrollbar-color: var(--docs-contrast-border-base) transparent;
|
|
}
|
|
|
|
aside * {
|
|
scrollbar-color: var(--docs-border-base) var(--docs-bg-subtle);
|
|
}
|
|
|
|
body[data-modal="opened"] {
|
|
@apply !overflow-hidden;
|
|
}
|
|
|
|
.text-wrap {
|
|
text-wrap: wrap;
|
|
}
|
|
|
|
/* Hack to hide navbar / toc when some components like prompt are opened. */
|
|
body[data-scroll-locked] .z-20,
|
|
body[data-scroll-locked] .z-10 {
|
|
z-index: 0 !important;
|
|
}
|
|
}
|
|
|
|
.grecaptcha-badge {
|
|
visibility: hidden;
|
|
} |