blob: d99edaf7af6e433c8e89db4532a4111fa44eec9b (
plain) (
blame)
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
|
@use '_mixins' as *;
@use '_variables' as *;
.modal-body {
font-size: 15px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
}
.mascot-fw {
width: 170px;
}
.mascot {
@include margin-right(2rem);
display: block;
width: 170px;
height: 220px;
}
.subtitle {
font-weight: $font-semibold;
margin-bottom: 10px;
font-size: 16px;
}
li {
margin-bottom: 10px;
}
|