mirror of
https://github.com/eliasstepanik/strudel-docker.git
synced 2026-01-17 16:48:32 +00:00
+ add strudelTheme + add lineBackground with opacity + add some missing light flags + add fallback css variables for non js context
28 lines
589 B
CSS
28 lines
589 B
CSS
.container {
|
|
@apply overflow-hidden;
|
|
}
|
|
|
|
.header {
|
|
@apply flex justify-between bg-lineHighlight border-t border-l border-r border-lineHighlight rounded-t-md overflow-hidden;
|
|
}
|
|
|
|
.buttons {
|
|
@apply flex;
|
|
}
|
|
|
|
.button {
|
|
@apply cursor-pointer w-16 flex items-center justify-center p-1 border-r border-lineHighlight text-foreground hover:bg-background;
|
|
}
|
|
|
|
.buttonDisabled {
|
|
@apply w-16 flex items-center justify-center p-1 opacity-50 cursor-not-allowed border-r border-lineHighlight;
|
|
}
|
|
|
|
.error {
|
|
@apply text-right p-1 text-sm text-red-200;
|
|
}
|
|
|
|
.body {
|
|
@apply overflow-auto relative;
|
|
}
|