Make Roboto Mono default font
continuous-integration/drone Build is passing Details

This commit is contained in:
Erki Aas 2022-11-16 15:03:00 +02:00
parent c57fbce360
commit 4452819aed
2 changed files with 11 additions and 2 deletions

View File

@ -1,6 +1,7 @@
div#app { div#app {
width: 100%; width: 100%;
height: 100vh; height: 100vh;
font-family: 'Roboto Mono';
} }
.screenshots-drawer { .screenshots-drawer {
@ -23,7 +24,7 @@ div#app {
} }
.vc-container { .vc-container {
font-family: 'Roboto' !important; font-family: 'Roboto Mono' !important;
} }
:root { :root {
@ -35,4 +36,12 @@ div#app {
width: 100%; width: 100%;
height: calc(100% - 56px); height: calc(100% - 56px);
margin-top: 56px; margin-top: 56px;
}
.ag-theme-material {
--ag-font-family: 'Roboto Mono'!important;
}
.v--default-css .c-toast {
font-family: 'Roboto Mono'!important;
} }

View File

@ -10,7 +10,7 @@ export async function loadFonts () {
webFontLoader.load({ webFontLoader.load({
google: { google: {
families: [ families: [
'Montserrat', 'Roboto', 'Montserrat', 'Roboto Mono',
], ],
}, },
}) })