Skip to content

Commit

Permalink
Fix mixed declarations
Browse files Browse the repository at this point in the history
  • Loading branch information
eliottvincent committed Jan 2, 2025
1 parent 27bf05e commit 537bc72
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
3 changes: 1 addition & 2 deletions _sass/_base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,7 @@ pre {
* Wrapper
*/
.wrapper {
position: relative;
max-width: -webkit-calc(760px - (variables.$spacing-unit * 2));
max-width: calc(760px - (variables.$spacing-unit * 2));
margin-right: auto;
Expand All @@ -203,8 +204,6 @@ pre {
padding-right: calc(variables.$spacing-unit / 2);
padding-left: calc(variables.$spacing-unit / 2);
}

position: relative;
}

/**
Expand Down
5 changes: 1 addition & 4 deletions _sass/_layout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,16 @@
* Site header
*/
.site-header {
position: relative;
border-bottom: 1px solid variables.$color-grey-light;
min-height: 56px;

padding-top: 10px;
padding-bottom: 10px;

@include mixins.media-query(variables.$on-mobile) {
padding-top: 0;
padding-bottom: 0;
}

// Positioning context for the mobile navigation icon
position: relative;
}

.site-title {
Expand Down

0 comments on commit 537bc72

Please sign in to comment.