Sfoglia il codice sorgente

Fix styling issues if body too small

Fix css indentation
Lucian I. Last 6 anni fa
parent
commit
14d70376d1
4 ha cambiato i file con 18 aggiunte e 1 eliminazioni
  1. 1 1
      .editorconfig
  2. 0 0
      assets/css/style-min.css
  3. 9 0
      assets/css/style.css
  4. 8 0
      assets/scss/style.scss

+ 1 - 1
.editorconfig

@@ -7,7 +7,7 @@ insert_final_newline = true
 indent_style = space
 indent_size = 4
 
-[{package.json,.travis.yml,Dockerfile}]
+[{package.json,.travis.yml,Dockerfile,*.css,*.scss}]
 indent_style = space
 indent_size = 2
 

File diff suppressed because it is too large
+ 0 - 0
assets/css/style-min.css


+ 9 - 0
assets/css/style.css

@@ -7,6 +7,15 @@ ul {
   font-family: Helvetica, Arial, Sans-serif;
 }
 
+/* body too small for entire page */
+html {
+  height: 100%;
+}
+
+body {
+  min-height: 100%;
+}
+
 li {
   list-style: none;
 }

+ 8 - 0
assets/scss/style.scss

@@ -7,6 +7,14 @@ ul {
   font-family: Helvetica, Arial, Sans-serif;
 }
 
+/* body too small for entire page */
+html {
+  height: 100%;
+}
+body {
+  min-height: 100%;
+}
+
 li {
   list-style: none;
 }

Some files were not shown because too many files changed in this diff