Skip to content

Commit

Permalink
fix broken media query
Browse files Browse the repository at this point in the history
  • Loading branch information
mhkeller committed Jan 10, 2016
1 parent f7e90b2 commit 3da6b4b
Show file tree
Hide file tree
Showing 5 changed files with 62 additions and 40 deletions.
12 changes: 11 additions & 1 deletion docs/assets/bass.css
Original file line number Diff line number Diff line change
Expand Up @@ -385,7 +385,7 @@ h6, .h6 { font-size: .75rem }
}

.col-3 {
width: 25%;
width: 20%;
}

.col-4 {
Expand Down Expand Up @@ -483,6 +483,10 @@ h6, .h6 { font-size: .75rem }
width: 100%;
}

.lg-col-9 {
width: 75%;
}

}
@media (min-width: 52em) {

Expand Down Expand Up @@ -545,6 +549,12 @@ h6, .h6 { font-size: .75rem }
}

}
@media (max-width: 640px) {
.flex {
display: block !important;
}
}

@media (min-width: 64em) {

.lg-col {
Expand Down
3 changes: 2 additions & 1 deletion docs/assets/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
}

.font-smaller {
font-size:80%;
font-size:85%;
}

.fade {
Expand All @@ -26,6 +26,7 @@
}
.section-indent section{
padding-top: 3px;
margin-top: 0;
}
.bg-cloudy {
background: rgba(230, 235, 237, 1);
Expand Down

0 comments on commit 3da6b4b

Please sign in to comment.