Files
discord.js/packages/website/src/styles/main.css
Suneet Tipirneni 4bda24678a refactor(website): add typography improvements (#8355)
* refactor(website): add typography improvements

* chore: bold on hover
2022-07-24 21:56:50 +02:00

34 lines
699 B
CSS

@import url('https://rsms.me/inter/inter.css');
@supports (font-variation-settings: normal) {
html {
font-family: 'Inter var', sans-serif;
font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
}
}
html,
body {
height: 100vh;
margin: 0;
font-family: 'Inter var', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto,
Helvetica Neue, Arial, Noto Sans, sans-serif, 'Apple Color Emoji', 'Segoe UI Emoji', Segoe UI Symbol,
'Noto Color Emoji';
font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
}
#__next {
max-width: 100%;
max-height: 100%;
width: 100%;
height: 100%;
}
code {
font-family: 'JetBrains Mono';
}
pre {
font-family: 'JetBrains Mono';
}