Skip to content

Commit

Permalink
Merge pull request #36 from JamsMendez/page-style
Browse files Browse the repository at this point in the history
Fixed Footer and Header style
  • Loading branch information
zeroidentidad committed Jul 3, 2024
2 parents 6c336e4 + 41530b4 commit c2f2eed
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 4 additions & 0 deletions themes/basic/assets/css/_global.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,16 @@ html, body, .container {
height: 100%;
margin: 0;
font-family: 'Work Sans', san-serif;

display:flex;
flex-direction:column;
}

.app-width {
width: calc(100% - calc(#{$content-margin} * 2)) !important;
padding-left: $content-margin !important;
padding-right: $content-margin !important;
flex-grow: 1;
}

@media (min-width: $content-max-width + ($content-margin * 2)) {
Expand Down
8 changes: 2 additions & 6 deletions themes/basic/assets/css/_header.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
justify-content: center;
align-items: center;
height: $header-height;
border-bottom: 1px solid #ddd;
border-bottom: 1px solid #ccc;
box-shadow: 1px 1px 3px #ccc;

.header-left { text-align: left }
.header-center {
Expand All @@ -18,11 +19,6 @@
.button-search {
text-decoration: none;
}

&:hover {
border-bottom: 1px solid #ccc;
box-shadow: 1px 1px 3px #ccc;
}
}

.menu-button {
Expand Down

0 comments on commit c2f2eed

Please sign in to comment.