feat: add account tabs (#378)

* feat: add account tabs

* chore: bump

* refactor: change network tab for old accounting

* feat: new fonts and text transformation, chequebook tab

* feat: polishing
This commit is contained in:
Cafe137
2022-06-17 11:39:56 +02:00
committed by GitHub
parent 199516d60c
commit 41432bc346
46 changed files with 507 additions and 201 deletions
+14 -8
View File
@@ -1,5 +1,5 @@
import { createTheme, Theme } from '@material-ui/core/styles'
import { orange } from '@material-ui/core/colors'
import { createTheme, Theme } from '@material-ui/core/styles'
declare module '@material-ui/core/styles/createPalette' {
interface TypeBackground {
@@ -186,23 +186,29 @@ export const theme = createTheme({
},
},
typography: {
fontFamily: ['Work Sans', 'Montserrat', 'Nunito', 'Roboto', '"Helvetica Neue"', 'Arial', 'sans-serif'].join(','),
fontFamily: ['iAWriterQuattroV', 'Roboto', '"Helvetica Neue"', 'Arial', 'sans-serif'].join(','),
h1: {
fontSize: '1.3rem',
fontWeight: 500,
fontSize: '1.1rem',
fontWeight: 600,
},
h2: {
fontSize: '1rem',
fontWeight: 500,
fontSize: '0.9rem',
fontWeight: 600,
},
h3: {
fontSize: '0.8rem',
fontWeight: 500,
},
body1: {
fontSize: '0.85rem',
},
body2: {
fontFamily: '"IBM Plex Mono", monospace',
fontFamily: '"iAWriterMonoV", monospace',
fontWeight: 500,
fontSize: '1rem',
fontSize: '0.85rem',
},
button: {
textTransform: 'none',
},
},
})