s3si.ts/gui/src/main.css

25 lines
273 B
CSS
Raw Normal View History

2023-03-03 07:40:39 -05:00
@tailwind base;
@tailwind components;
@tailwind utilities;
2023-03-03 08:29:36 -05:00
2023-03-06 07:21:29 -05:00
body {
width: 100vw;
height: 100vh;
}
#root {
2023-07-04 07:40:22 -04:00
width: 100vw;
2023-03-06 07:21:29 -05:00
height: 100vh;
2023-03-08 16:36:14 -05:00
overflow: hidden
2023-03-03 08:29:36 -05:00
}
/* custom classes */
.flex-auto-all > * {
@apply flex-auto;
}
2023-03-08 09:55:23 -05:00
.full-card {
2023-03-08 16:36:14 -05:00
@apply card p-2 h-full;
2023-03-08 09:55:23 -05:00
}