mirror of
https://github.com/yude-jp/yude.jp
synced 2024-11-01 07:58:01 +09:00
22 lines
315 B
CSS
22 lines
315 B
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@layer base {
|
|
h1 {
|
|
@apply text-3xl my-3;
|
|
}
|
|
h2 {
|
|
@apply text-xl;
|
|
}
|
|
ul {
|
|
@apply list-disc mx-10
|
|
}
|
|
}
|
|
.tooltip {
|
|
@apply invisible absolute;
|
|
}
|
|
|
|
.has-tooltip:hover .tooltip {
|
|
@apply visible z-50;
|
|
} |