26 lines
334 B
SCSS
26 lines
334 B
SCSS
|
@import "../../_theme.scss";
|
||
|
@import "~bootstrap/scss/bootstrap.scss";
|
||
|
|
||
|
.big-icon {
|
||
|
width: 100%;
|
||
|
color: white;
|
||
|
font-size: 9rem;
|
||
|
padding: 3rem;
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
.card-title {
|
||
|
font-size: 1rem;
|
||
|
}
|
||
|
|
||
|
.spacer {
|
||
|
display: none;
|
||
|
height: 4rem;
|
||
|
}
|
||
|
|
||
|
@media screen and (min-width:44rem) {
|
||
|
.spacer {
|
||
|
display: block;
|
||
|
}
|
||
|
}
|