Fix: add bottom margin dashboard

This commit is contained in:
csrapr 2021-02-12 11:54:54 +00:00 committed by Josh Harvey
parent 3f042410f7
commit a509d6c198
2 changed files with 5 additions and 11 deletions

View file

@ -38,7 +38,8 @@ const styles = {
}, },
noAlertsLabel: { noAlertsLabel: {
color: comet, color: comet,
marginLeft: -5 marginLeft: -5,
height: 100
}, },
table: { table: {
maxHeight: 465, maxHeight: 465,

View file

@ -1,5 +1,5 @@
import typographyStyles from 'src/components/typography/styles' import typographyStyles from 'src/components/typography/styles'
import { spacer, white, primaryColor, comet } from 'src/styling/variables' import { spacer, white, primaryColor } from 'src/styling/variables'
const { label1 } = typographyStyles const { label1 } = typographyStyles
const styles = { const styles = {
@ -20,10 +20,8 @@ const styles = {
}, },
root: { root: {
flexGrow: 1, flexGrow: 1,
display: 'flex' display: 'flex',
}, marginBottom: 120
footer: {
margin: [['auto', 0, spacer * 3, 'auto']]
}, },
card: { card: {
wordWrap: 'break-word', wordWrap: 'break-word',
@ -64,10 +62,6 @@ const styles = {
marginTop: 40, marginTop: 40,
marginBottom: 0 marginBottom: 0
}, },
notAlertsLabel: {
marginTop: 40,
color: comet
},
systemStatusCard: { systemStatusCard: {
flex: 1, flex: 1,
marginTop: spacer marginTop: spacer
@ -80,7 +74,6 @@ const styles = {
}, },
displayFlex: { displayFlex: {
display: 'flex', display: 'flex',
flex: 0.85,
flexDirection: 'column' flexDirection: 'column'
} }
} }