43 lines
923 B
CSS
43 lines
923 B
CSS
@tailwind base;
|
|
|
|
@layer base {
|
|
* {
|
|
@apply border-border;
|
|
}
|
|
body {
|
|
@apply bg-background text-foreground;
|
|
}
|
|
}
|
|
|
|
@layer base {
|
|
[data-debug-wrapper="true"] {
|
|
display: contents !important;
|
|
}
|
|
|
|
[data-debug-wrapper="true"] > * {
|
|
margin-left: inherit;
|
|
margin-right: inherit;
|
|
margin-top: inherit;
|
|
margin-bottom: inherit;
|
|
padding-left: inherit;
|
|
padding-right: inherit;
|
|
padding-top: inherit;
|
|
padding-bottom: inherit;
|
|
column-gap: inherit;
|
|
row-gap: inherit;
|
|
gap: inherit;
|
|
border-left-width: inherit;
|
|
border-right-width: inherit;
|
|
border-top-width: inherit;
|
|
border-bottom-width: inherit;
|
|
border-left-style: inherit;
|
|
border-right-style: inherit;
|
|
border-top-style: inherit;
|
|
border-bottom-style: inherit;
|
|
border-left-color: inherit;
|
|
border-right-color: inherit;
|
|
border-top-color: inherit;
|
|
border-bottom-color: inherit;
|
|
}
|
|
}
|