10000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df56808 commit bc3df24Copy full SHA for bc3df24
web-app/src/components/Step/index.tsx
@@ -5,19 +5,24 @@ import CR from 'typings'
5
import Markdown from '../Markdown'
6
7
const styles = {
8
+ active: {
9
+ backgroundColor: '#e6f7ff',
10
+ },
11
card: {
- display: 'flex',
- flexDirection: 'row' as 'row',
12
+ borderRadius: '0.3rem',
13
+ display: 'grid',
14
+ gridTemplateAreas: 'CheckboxMargin Content',
15
+ gridTemplateColumns: '2rem 1fr',
16
+ gridTemplateRows: '1fr',
17
margin: '1rem',
18
},
19
left: {
- width: '2rem',
20
+ justifySelf: 'center',
21
+ paddingTop: '0.8rem',
22
23
right: {
- flex: 1,
- },
- active: {
- backgroundColor: 'yellow',
24
+ padding: '0.2rem',
25
+ paddingTop: 0,
26
27
}
28
0 commit comments