9 lines
173 B
Nix
9 lines
173 B
Nix
{ style, ... }: {
|
|
text = ''
|
|
* {
|
|
font-family: "${style.font.serif.name}", "Terminess Nerd Font Propo";
|
|
font-size: ${toString(style.font.size.desktop)}px;
|
|
}
|
|
'';
|
|
}
|