25 lines
447 B
CSS
25 lines
447 B
CSS
@import "tailwindcss";
|
|
@plugin "@tailwindcss/typography";
|
|
|
|
:root {
|
|
font-family: "Zen Maru Gothic", sans-serif;
|
|
}
|
|
|
|
@supports (font-variation-settings: normal) {
|
|
:root {
|
|
font-family: "Zen Maru Gothic", sans-serif;
|
|
}
|
|
}
|
|
|
|
@supports (font-variation-settings: medium) {
|
|
:root {
|
|
font-family: "Zen Maru Gothic", sans-serif;
|
|
}
|
|
}
|
|
|
|
|
|
@supports (font-variation-settings: bold) {
|
|
:root {
|
|
font-family: "Zen Maru Gothic", sans-serif;
|
|
}
|
|
}
|