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 {
width: 100%;
height: 100vh;
font-family: 'Roboto Mono';
}
.screenshots-drawer {
@ -23,7 +24,7 @@ div#app {
}
.vc-container {
font-family: 'Roboto' !important;
font-family: 'Roboto Mono' !important;
}
:root {
@ -35,4 +36,12 @@ div#app {
width: 100%;
height: calc(100% - 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({
google: {
families: [
'Montserrat', 'Roboto',
'Montserrat', 'Roboto Mono',
],
},
})