31 lines
383 B
SCSS
31 lines
383 B
SCSS
@use '_variables' as *;
|
|
@use '_mixins' as *;
|
|
|
|
.modal-body {
|
|
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;
|
|
}
|
|
|
|
li {
|
|
margin-bottom: 10px;
|
|
}
|