Browse Source

Replace `vh` with a solution that should work in way more browsers.

pull/418/head
XhmikosR 11 years ago
parent
commit
6a4bdb9820
  1. 7
      docs/assets/css/docs.css
  2. 2
      docs/assets/css/docs.min.css
  3. 7
      sass/docs.scss

7
docs/assets/css/docs.css

@ -61,7 +61,12 @@ body {
}
.docs-header {
height: 100vh;
position: fixed !important;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
min-height: 750px;
}
.docs-header .carbonad {

2
docs/assets/css/docs.min.css vendored

File diff suppressed because one or more lines are too long

7
sass/docs.scss

@ -67,7 +67,12 @@ body {
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0a1855', endColorstr='#da0024', GradientType=0 );
}
.docs-header {
height: 100vh;
position: fixed !important;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
min-height: 750px;
// Ad on the homepage

Loading…
Cancel
Save