mirror of
https://github.com/Karaka-Management/cssOMS.git
synced 2026-01-11 11:18:39 +00:00
allow to hide elements
This commit is contained in:
parent
4a18ab10b8
commit
1f18623db9
20
grid.scss
20
grid.scss
|
|
@ -41,6 +41,14 @@
|
|||
display: none;
|
||||
}
|
||||
|
||||
.xs-hidden,
|
||||
.sm-hidden,
|
||||
.md-hidden,
|
||||
.lg-hidden
|
||||
{
|
||||
display: hidden;
|
||||
}
|
||||
|
||||
.col-xs-0 {
|
||||
box-sizing: border-box;
|
||||
flex-grow: 0;
|
||||
|
|
@ -231,6 +239,10 @@
|
|||
}
|
||||
|
||||
@media only screen and (min-width: 48em) {
|
||||
.sm-hidden {
|
||||
display: inherit;
|
||||
}
|
||||
|
||||
.container {
|
||||
width: 46rem;
|
||||
}
|
||||
|
|
@ -412,6 +424,10 @@
|
|||
}
|
||||
|
||||
@media only screen and (min-width: 62em) {
|
||||
.md-hidden {
|
||||
display: inherit;
|
||||
}
|
||||
|
||||
.container {
|
||||
width: 61rem;
|
||||
}
|
||||
|
|
@ -593,6 +609,10 @@
|
|||
}
|
||||
|
||||
@media only screen and (min-width: 75em) {
|
||||
.lg-hidden {
|
||||
display: inherit;
|
||||
}
|
||||
|
||||
.container {
|
||||
width: 71rem;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user