yude.jp/styles/globals.css

22 lines
315 B
CSS
Raw Normal View History

2021-05-23 15:45:42 +09:00
@tailwind base;
2021-02-07 11:29:21 +09:00
@tailwind components;
@tailwind utilities;
2021-05-23 15:45:42 +09:00
@layer base {
h1 {
2021-05-23 16:09:40 +09:00
@apply text-3xl my-3;
2021-05-23 15:45:42 +09:00
}
h2 {
2021-05-23 16:09:40 +09:00
@apply text-xl;
}
ul {
@apply list-disc mx-10
2021-05-23 15:45:42 +09:00
}
2021-05-24 16:51:13 +09:00
}
.tooltip {
@apply invisible absolute;
}
.has-tooltip:hover .tooltip {
@apply visible z-50;
}