2024-05-19 21:20:42 +08:00
|
|
|
@tailwind base;
|
|
|
|
@tailwind components;
|
|
|
|
@tailwind utilities;
|
2024-05-28 23:38:36 +08:00
|
|
|
|
2024-05-19 21:20:42 +08:00
|
|
|
@layer base {
|
|
|
|
html {
|
|
|
|
@apply font-sans;
|
|
|
|
}
|
|
|
|
}
|
2024-05-28 23:38:36 +08:00
|
|
|
|
2024-05-19 21:20:42 +08:00
|
|
|
@layer components {
|
|
|
|
.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-[''];
|
|
|
|
}
|
|
|
|
|
|
|
|
&.outline-box-active {
|
|
|
|
@apply outline-primary outline outline-2;
|
|
|
|
&:after {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:not(.outline-box-active):hover:after {
|
|
|
|
@apply outline-primary left-0 top-0 h-full w-full p-1 opacity-100;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|