27 lines
529 B
CSS
Raw Normal View History

2022-12-05 23:01:12 +08:00
@tailwind base;
@layer base {
.layout-sider {
@apply z-0 absolute top-16 left-0 sm:static transition-width duration-300 ease-linear
}
.layout-sider-open {
@apply layout-sider w-64
}
2023-01-12 10:10:17 +08:00
.layout-sider-hidden {
@apply layout-sider w-0 lg:w-20
2022-12-05 23:01:12 +08:00
}
2023-01-12 10:10:17 +08:00
2022-12-05 23:01:12 +08:00
.layout-sider-mask {
@apply block lg:hidden z-40 w-full h-full absolute
}
2023-01-12 10:10:17 +08:00
.table-default {
@apply pl-2 pr-2 bg-white dark:bg-regal-dark rounded-lg mt-2 pb-6
}
2022-12-05 23:01:12 +08:00
}
@tailwind components;
2023-01-12 10:10:17 +08:00
@tailwind utilities;