Skip to content

Commit c2f2eed

Browse files
Merge pull request #36 from JamsMendez/page-style
Fixed Footer and Header style
2 parents 6c336e4 + 41530b4 commit c2f2eed

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

themes/basic/assets/css/_global.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,16 @@ html, body, .container {
55
height: 100%;
66
margin: 0;
77
font-family: 'Work Sans', san-serif;
8+
9+
display:flex;
10+
flex-direction:column;
811
}
912

1013
.app-width {
1114
width: calc(100% - calc(#{$content-margin} * 2)) !important;
1215
padding-left: $content-margin !important;
1316
padding-right: $content-margin !important;
17+
flex-grow: 1;
1418
}
1519

1620
@media (min-width: $content-max-width + ($content-margin * 2)) {

themes/basic/assets/css/_header.scss

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@
66
justify-content: center;
77
align-items: center;
88
height: $header-height;
9-
border-bottom: 1px solid #ddd;
9+
border-bottom: 1px solid #ccc;
10+
box-shadow: 1px 1px 3px #ccc;
1011

1112
.header-left { text-align: left }
1213
.header-center {
@@ -18,11 +19,6 @@
1819
.button-search {
1920
text-decoration: none;
2021
}
21-
22-
&:hover {
23-
border-bottom: 1px solid #ccc;
24-
box-shadow: 1px 1px 3px #ccc;
25-
}
2622
}
2723

2824
.menu-button {

0 commit comments

Comments
 (0)