Fix mobile media query (#2840)

This commit is contained in:
Maurizio Vitale
2018-01-17 14:44:34 +01:00
committed by Eugenio Romano
parent 6160d33683
commit b932942983
2 changed files with 23 additions and 7 deletions

View File

@@ -1,8 +1,8 @@
.adf {
&-start-process {
width: calc(66.6666% - 48px);
margin-left: calc(33.3333333333% / 2);
margin-right: calc(33.3333333333% / 2);
width: 66%;
margin-left: auto;
margin-right: auto;
margin-top: 10px;
.mat-select-trigger {
font-size: 14px !important;
@@ -35,4 +35,12 @@
&-start-form-actions {
text-align: right !important;
}
}
}
@media (max-width: 600px) {
.adf-start-process {
width: 90%;
margin-left: auto;
margin-right: auto;
}
}