mirror of https://github.com/ColorlibHQ/AdminLTE
changed content-wrapper calc() from `%` to `vh` & added content-wrapper calc() with collapsed header
parent
b90ae59dc1
commit
33ecce7207
|
@ -70,11 +70,17 @@ body {
|
||||||
}
|
}
|
||||||
|
|
||||||
.content-wrapper {
|
.content-wrapper {
|
||||||
min-height: ~"calc(100% - 102px)";
|
min-height: ~"calc(100vh - 101px)";
|
||||||
background-color: @content-bg;
|
background-color: @content-bg;
|
||||||
z-index: 800;
|
z-index: 800;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@media (max-width: @screen-header-collapse) {
|
||||||
|
.content-wrapper {
|
||||||
|
min-height: ~"calc(100vh - 151px)";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.main-footer {
|
.main-footer {
|
||||||
background: #fff;
|
background: #fff;
|
||||||
padding: 15px;
|
padding: 15px;
|
||||||
|
|
|
@ -87,10 +87,15 @@ body {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.content-wrapper {
|
.content-wrapper {
|
||||||
min-height: calc(100% - 102px);
|
min-height: calc(100vh - 101px);
|
||||||
background-color: #ecf0f5;
|
background-color: #ecf0f5;
|
||||||
z-index: 800;
|
z-index: 800;
|
||||||
}
|
}
|
||||||
|
@media (max-width: 767px) {
|
||||||
|
.content-wrapper {
|
||||||
|
min-height: calc(100vh - 151px);
|
||||||
|
}
|
||||||
|
}
|
||||||
.main-footer {
|
.main-footer {
|
||||||
background: #fff;
|
background: #fff;
|
||||||
padding: 15px;
|
padding: 15px;
|
||||||
|
|
File diff suppressed because one or more lines are too long
|
@ -88,10 +88,15 @@ body {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
.content-wrapper {
|
.content-wrapper {
|
||||||
min-height: calc(100% - 102px);
|
min-height: calc(100vh - 101px);
|
||||||
background-color: #ecf0f5;
|
background-color: #ecf0f5;
|
||||||
z-index: 800;
|
z-index: 800;
|
||||||
}
|
}
|
||||||
|
@media (max-width: 767px) {
|
||||||
|
.content-wrapper {
|
||||||
|
min-height: calc(100vh - 151px);
|
||||||
|
}
|
||||||
|
}
|
||||||
.main-footer {
|
.main-footer {
|
||||||
background: #fff;
|
background: #fff;
|
||||||
padding: 15px;
|
padding: 15px;
|
||||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue