Skip to content

Commit

Permalink
Footer copyright handles multiple line content correctly
Browse files Browse the repository at this point in the history
  • Loading branch information
Dogfalo committed Jan 19, 2017
1 parent dbf25fa commit a7f4c87
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 5 deletions.
10 changes: 8 additions & 2 deletions bin/materialize.css
Expand Up @@ -2867,8 +2867,14 @@ footer.page-footer {

footer.page-footer .footer-copyright {
overflow: hidden;
height: 50px;
line-height: 50px;
min-height: 50px;
display: -webkit-flex;
display: -ms-flexbox;
display: flex;
-webkit-align-items: center;
-ms-flex-align: center;
align-items: center;
padding: 10px 0px;
color: rgba(255, 255, 255, 0.8);
background-color: rgba(51, 51, 51, 0.08);
}
Expand Down
2 changes: 1 addition & 1 deletion css/ghpages-materialize.css

Large diffs are not rendered by default.

6 changes: 4 additions & 2 deletions sass/components/_global.scss
Expand Up @@ -350,8 +350,10 @@ footer.page-footer {

.footer-copyright {
overflow: hidden;
height: 50px;
line-height: 50px;
min-height: 50px;
display: flex;
align-items: center;
padding: 10px 0px;
color: rgba(255,255,255,.8);
background-color: rgba(51,51,51,.08);
@extend .light;
Expand Down

0 comments on commit a7f4c87

Please sign in to comment.