Skip to content

Commit

Permalink
fix: invalid scss variable in css function
Browse files Browse the repository at this point in the history
This issue was caused by the PR #108.
  • Loading branch information
jeffreytse committed Feb 12, 2024
1 parent d1d352d commit df61d0c
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion _sass/misc/article-menu.scss
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
.post-menu-content {
ul {
border-left: 1px solid #e9ecef;
$indent: calc($base-font-size / 4);
$indent: #{$base-font-size / 4};
$active-bgcolor: #ecebec;

@for $i from 2 to 7 {
Expand Down
4 changes: 2 additions & 2 deletions _sass/yat.scss
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,8 @@ $on-laptop: 800px !default;
// Use media queries like this:
// @include media-query($on-palm) {
// .wrapper {
// padding-right: calc($spacing-unit / 2);
// padding-left: calc($spacing-unit / 2);
// padding-right: #{$spacing-unit / 2};
// padding-left: #{$spacing-unit / 2};
// }
// }
@mixin media-query($device) {
Expand Down
6 changes: 3 additions & 3 deletions _sass/yat/_base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ h1, h2, h3, h4, h5, h6,
p, blockquote, pre,
ul, ol, dl, figure,
%vertical-rhythm {
margin-bottom: calc($spacing-unit / 2);
margin-bottom: #{$spacing-unit / 2};
}


Expand Down Expand Up @@ -128,7 +128,7 @@ a {
blockquote {
color: $grey-color;
border-left: 4px solid $grey-color-light;
padding-left: calc($spacing-unit / 2);
padding-left: #{$spacing-unit / 2};
@include relative-font-size(1.125);
letter-spacing: -1px;
font-style: italic;
Expand Down Expand Up @@ -222,7 +222,7 @@ table {
}

th, td {
padding: calc($spacing-unit / 3) calc($spacing-unit / 2);
padding: #{$spacing-unit / 3} #{$spacing-unit / 2};
}

th {
Expand Down
4 changes: 2 additions & 2 deletions _sass/yat/_layout.scss
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ html {

.site-favicon {
display: inline-block;
height: calc($header-height / 1.5);
height: #{$header-height / 1.5};
margin-right: 5px;
}
}
Expand Down Expand Up @@ -695,7 +695,7 @@ html {
}

@include media-query($on-palm) {
height: calc($banner-height / 1.5);
height: #{$banner-height / 1.5};
}
}

Expand Down

0 comments on commit df61d0c

Please sign in to comment.