Skip to content

Commit

Permalink
fix sass
Browse files Browse the repository at this point in the history
  • Loading branch information
jgoeders committed Jan 2, 2024
1 parent 007c55a commit db6a42a
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions website/Makefile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
serve: install
bundle exec jekyll serve --livereload

install:
bundle install

build: install
bundle exec jekyll build

serve: install
bundle exec jekyll serve --livereload

check_links: build
bundle exec htmlproofer --allow_missing_href true --ignore_missing_alt true --swap_urls "^\/ComputingBootCamp:" --ignore-status-codes "0,301,302,403,429,500,503", --enforce_https false ./_site

Expand Down
8 changes: 4 additions & 4 deletions website/_sass/_base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ ol,
dl,
figure,
%vertical-rhythm {
margin-bottom: $spacing-unit / 2;
margin-bottom: calc($spacing-unit / 2);
}

h1,
Expand Down Expand Up @@ -134,7 +134,7 @@ a {
blockquote {
color: $grey-color;
border-left: 4px solid $grey-color-light;
padding-left: $spacing-unit / 2;
padding-left: calc($spacing-unit / 2);
font-size: 18px;
letter-spacing: -1px;
font-style: italic;
Expand Down Expand Up @@ -185,8 +185,8 @@ pre {
@include media-query($on-laptop) {
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 db6a42a

Please sign in to comment.