diff options
author | Misiek <creating.www@gmail.com> | 2016-07-07 11:08:23 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-07 11:08:23 +0200 |
commit | cea7f00b65a031e57fbb55a2344a0a5b8b71a010 (patch) | |
tree | 1ff74f13b1a49bf65b5bd479e17e8ac11df12ea8 | |
parent | dd70294118ebba97759681158853cc90a2b8c696 (diff) | |
download | tipboard-cea7f00b65a031e57fbb55a2344a0a5b8b71a010.tar.gz tipboard-cea7f00b65a031e57fbb55a2344a0a5b8b71a010.tar.bz2 tipboard-cea7f00b65a031e57fbb55a2344a0a5b8b71a010.zip |
Fixes #14
This CSS rule fixes setting up row_1_of_1.
-rw-r--r-- | tipboard/static/css/layout.css | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tipboard/static/css/layout.css b/tipboard/static/css/layout.css index 511a64a..6f870ef 100644 --- a/tipboard/static/css/layout.css +++ b/tipboard/static/css/layout.css @@ -82,6 +82,7 @@ table { .row_3_of_3 { height: 100%; } .row_2_of_3 { height: 66.6666%; } .row_1_of_3 { height: 33.3333%; } +.row_1_of_1 { height: 100%; } .row_2_of_2 { height: 100%; } .row_1_of_2 { height: 50%; } .col_15_of_5 { width: 30%; } |