feat: created wizard's first step (select trigger direction)

This commit is contained in:
Liordino Neto 2020-04-01 19:10:18 -03:00 committed by Josh Harvey
parent 734215fc45
commit 46b2a15425
2 changed files with 105 additions and 19 deletions

View file

@ -1,14 +1,32 @@
import baseStyles from 'src/pages/Logs.styles'
import { booleanPropertiesTableStyles } from 'src/components/booleanPropertiesTable/BooleanPropertiesTable.styles'
const { titleWrapper, titleAndButtonsContainer, buttonsWrapper } = baseStyles
const { rowWrapper } = booleanPropertiesTableStyles
const {
titleWrapper,
titleAndButtonsContainer,
buttonsWrapper,
button
} = baseStyles
const { rowWrapper, radioButtons } = booleanPropertiesTableStyles
const mainStyles = {
titleWrapper,
titleAndButtonsContainer,
buttonsWrapper,
button,
rowWrapper,
radioButtons,
columnWrapper: {
display: 'flex',
flexDirection: 'column'
},
topLeftAligned: {
alignSelf: 'flex-start'
},
bottomRightAligned: {
alignSelf: 'flex-end',
marginLeft: 'auto'
},
modal: {
display: 'flex',
alignItems: 'center',