2024-05-19 13:20:42 +00:00
|
|
|
@tailwind base;
|
|
|
|
@tailwind components;
|
|
|
|
@tailwind utilities;
|
2024-05-28 15:38:36 +00:00
|
|
|
|
2024-05-19 13:20:42 +00:00
|
|
|
@layer base {
|
|
|
|
html {
|
|
|
|
@apply font-sans;
|
|
|
|
}
|
|
|
|
}
|
2024-05-28 15:38:36 +00:00
|
|
|
|
2024-05-29 14:13:31 +00:00
|
|
|
@layer components {
|
2024-05-28 15:53:15 +00:00
|
|
|
.flex-center {
|
|
|
|
@apply flex items-center justify-center;
|
|
|
|
}
|
|
|
|
|
|
|
|
.flex-col-center {
|
|
|
|
@apply flex flex-col items-center justify-center;
|
|
|
|
}
|
|
|
|
|
2024-05-19 13:20:42 +00:00
|
|
|
.outline-box {
|
2024-06-01 15:15:29 +00:00
|
|
|
@apply outline-border relative cursor-pointer rounded-md p-1 outline outline-1;
|
2024-06-02 12:47:50 +00:00
|
|
|
}
|
2024-05-28 15:53:15 +00:00
|
|
|
|
2024-06-02 12:47:50 +00:00
|
|
|
.outline-box::after {
|
|
|
|
@apply absolute left-1/2 top-1/2 z-20 h-0 w-[1px] rounded-sm opacity-0 outline outline-2 outline-transparent transition-all duration-300 content-[""];
|
|
|
|
}
|
2024-05-19 13:20:42 +00:00
|
|
|
|
2024-06-02 12:47:50 +00:00
|
|
|
.outline-box.outline-box-active {
|
|
|
|
@apply outline-primary outline outline-2;
|
|
|
|
}
|
2024-05-28 15:53:15 +00:00
|
|
|
|
2024-06-02 12:47:50 +00:00
|
|
|
.outline-box.outline-box-active::after {
|
|
|
|
display: none;
|
|
|
|
}
|
2024-05-19 13:20:42 +00:00
|
|
|
|
2024-06-02 12:47:50 +00:00
|
|
|
.outline-box:not(.outline-box-active):hover::after {
|
|
|
|
@apply outline-primary left-0 top-0 h-full w-full p-1 opacity-100;
|
2024-05-19 13:20:42 +00:00
|
|
|
}
|
2024-06-30 07:03:37 +00:00
|
|
|
|
|
|
|
.card-box {
|
|
|
|
@apply bg-card text-card-foreground border-border rounded-xl border shadow;
|
|
|
|
}
|
2024-05-19 13:20:42 +00:00
|
|
|
}
|