43 lines
731 B
SCSS
43 lines
731 B
SCSS
@import '../styleConstants.scss';
|
|
|
|
.App-header {
|
|
min-height: 7.2rem;
|
|
}
|
|
|
|
.wiaas-button{
|
|
background-color: $whiteColor;
|
|
color: $darkGreyColor;
|
|
font-size: $font-size-small;
|
|
cursor: pointer;
|
|
}
|
|
|
|
.main-wrapper {
|
|
position: relative;
|
|
padding: 7.5rem 0 5rem 0;
|
|
}
|
|
|
|
.loader{
|
|
padding-top: 1rem;
|
|
text-align: center;
|
|
}
|
|
|
|
.schedule-installation-btn {
|
|
cursor: pointer;
|
|
background-color: $whiteColor;
|
|
color: $darkGreyColor;
|
|
border: 0.1rem $border-grey solid;
|
|
display: inline-block;
|
|
border-radius: $box-radius;
|
|
font-weight: $font-weight;
|
|
}
|
|
|
|
@media all and (max-width: 992px) {
|
|
.main-wrapper {
|
|
padding: 0 0 5rem 0;
|
|
}
|
|
|
|
.app-content{
|
|
min-height: 400px;
|
|
}
|
|
}
|