Skip to content

Commit

Permalink
LuttyYang#44 Corrected some invalid styling attributes (0% + X is not…
Browse files Browse the repository at this point in the history
… valid tested on google chrome 60.0.3112.101)
  • Loading branch information
MartB committed Aug 15, 2017
1 parent b20b87e commit 7e147ab
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions files/htdocs/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -206,9 +206,7 @@ footer > a {
.main-left {
float: left;
top: 4rem;
width: 15%;
width: calc(0% + 15rem);
height: 100%;
width: 15rem;
height: calc(100% - 4rem);
background-color: white;
overflow-x: auto;
Expand Down Expand Up @@ -1231,7 +1229,7 @@ body.lang_pl.node-main-login .cbi-value-title {

@media screen and (max-width: 1600px) {
.main-left {
width: calc(0% + 13rem);
width: calc(13rem);
}

.main-right {
Expand Down Expand Up @@ -1284,7 +1282,7 @@ body.lang_pl.node-main-login .cbi-value-title {
}

.main-left {
width: calc(0% + 13rem);
width: calc(13rem);
top: 3.5rem;
height: calc(100% - 3.5rem);
}
Expand Down

0 comments on commit 7e147ab

Please sign in to comment.