Newer
Older
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
@import '../../../../../sass/variables/colors';
@import '../../../../../sass/mixins/elevation';
.menu-container {
.menu-modal {
background-color: #F7F8FB;
border-radius: 10px;
padding: 40px;
}
h2 {
padding-top: 24px;
padding-bottom: 32px;
color: $charcoal-grey;
font-size: 24px;
text-align: center;
font-weight: normal;
margin: 0;
span {
font-weight: bold;
}
}
}
.item-container {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: flex-start;
}
.tile {
@include elevation-1;
width: 250px;
height: 60px;
background: $white;
border-radius: 10px;
margin-left: 22px;
margin-bottom: 50px;
padding: 20px;
white-space: nowrap;
vertical-align: middle;
i {
margin-right: 10px;
color: var(--vitamui-secondary);