Skip to content

Commit

Permalink
Fix formatting warning
Browse files Browse the repository at this point in the history
  • Loading branch information
RachRocks committed Feb 26, 2024
1 parent c0ec58c commit c58386d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions _sass/camp/_base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ a {
blockquote {
color: $grey-color;
border-left: 4px solid $grey-color-light;
padding-left: $spacing-unit / 2;
padding-left: calc($spacing-unit / 2);
@include relative-font-size(1.125);
letter-spacing: -1px;
font-style: italic;
Expand Down Expand Up @@ -162,8 +162,8 @@ pre {
@include media-query($medium-width) {
max-width: -webkit-calc(#{$content-width} - (#{$spacing-unit}));
max-width: calc(#{$content-width} - (#{$spacing-unit}));
padding-right: $spacing-unit / 2;
padding-left: $spacing-unit / 2;
padding-right: calc($spacing-unit / 2);
padding-left: calc($spacing-unit / 2);
}
}

Expand Down

0 comments on commit c58386d

Please sign in to comment.