70 lines
834 B
CSS
70 lines
834 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@layer base {
|
|
/* shadcn colors */
|
|
|
|
:root,
|
|
#shadow-html {
|
|
--radius: 0.5rem;
|
|
}
|
|
|
|
[data-theme="light"] {
|
|
--background: 0 0% 100%;
|
|
--color-background: 255 255 255;
|
|
|
|
--border: 20 5.9% 90%;
|
|
--radius: 0.5rem;
|
|
}
|
|
|
|
[data-theme="dark"] {
|
|
--background: 0 0% 7.1%;
|
|
--color-background: 18 18 18;
|
|
|
|
--border: 0 0% 22.1%;
|
|
}
|
|
}
|
|
|
|
@layer base {
|
|
* {
|
|
@apply border-border;
|
|
}
|
|
|
|
body {
|
|
@apply text-text;
|
|
}
|
|
}
|
|
|
|
.prose {
|
|
table * {
|
|
font-size: 1rem;
|
|
}
|
|
|
|
table table {
|
|
margin: 0;
|
|
}
|
|
|
|
p {
|
|
@apply break-words;
|
|
}
|
|
|
|
word-break: break-word;
|
|
}
|
|
|
|
@layer utilities {
|
|
[data-hide-in-print] {
|
|
@apply print:!hidden;
|
|
}
|
|
}
|
|
|
|
i {
|
|
@apply select-none;
|
|
}
|
|
|
|
@layer utilities {
|
|
.autospace-normal {
|
|
text-autospace: normal;
|
|
}
|
|
}
|