Spaces:
Runtime error
Runtime error
File size: 764 Bytes
bfd34e9 |
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 |
/* Extra small devices (phones, 768px and down) */
@media only screen and (max-width: 768px) {
#inputmask {
height: 400px !important;
}
}
/* Small devices (portrait tablets and large phones, 768px and up) */
@media only screen and (min-width: 768px) {
}
/* Medium devices (landscape tablets, 992px and up) */
@media only screen and (min-width: 992px) {
#inputmask {
height: 300px !important;
}
}
/* Large devices (laptops/desktops, 1200px and up) */
@media only screen and (min-width: 1200px) {
#inputmask {
height: 400px !important;
}
}
/* Extra large devices (large laptops and desktops, 1400px and up) */
@media only screen and (min-width: 1400px) {
#inputmask {
height: 400px !important;
}
} |