1
0
mirror of https://github.com/jenil/chota.git synced 2023-08-10 21:13:07 +03:00

⚒ fix for responsive utils

This commit is contained in:
Jenil Gogari 2018-01-11 20:30:52 -05:00
parent a7dba15204
commit d39314ce5d
3 changed files with 6 additions and 6 deletions

6
dist/chota.css vendored
View File

@ -21,7 +21,7 @@ body {
line-height: 1.6;
font-size: 1.6rem;
font-weight: 400;
font-family: "Segoe UI", "Helvetica Neue", san-serif; /*fallback*/
font-family: "Segoe UI", "Helvetica Neue", sans-serif; /*fallback*/
font-family: var(--font-family);
margin: 0;
padding: 0;
@ -570,11 +570,11 @@ button[disabled]:hover {
}
@media screen and (max-width: 480px) {
.hide-phone {
display: none;
display: none !important;
}
}
@media screen and (max-width: 768px) {
.hide-tablet {
display: none;
display: none !important;
}
}

2
dist/chota.min.css vendored

File diff suppressed because one or more lines are too long

View File

@ -92,12 +92,12 @@
@media screen and (max-width: 480px) {
.hide-phone {
display: none;
display: none !important;
}
}
@media screen and (max-width: 768px) {
.hide-tablet {
display: none;
display: none !important;
}
}