Skip to content

Commit 84bb915

Browse files
committed
Merge branch 'release/v1.11.1'
* release/v1.11.1: Bump version number to 1.11.1. Modify Fractal configuration. Remove uses of slash division from Sass files. Update Husky config. Update dependencies.
2 parents 59e09df + ae6241e commit 84bb915

19 files changed

Lines changed: 30107 additions & 12767 deletions

File tree

.husky/pre-commit

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
#!/bin/sh
2+
. "$(dirname "$0")/_/husky.sh"
3+
4+
npx pretty-quick --staged

components/_pages/stream-team/_stream-team.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
&__inner {
3636
display: grid;
3737
grid-column-gap: tokens.$grid-gutter;
38-
grid-row-gap: tokens.$grid-gutter / 2;
38+
grid-row-gap: tokens.$grid-gutter * 0.5;
3939
grid-template-areas: "main" "twitter" "schedule" "list";
4040
grid-template-columns: 1fr;
4141
@include media.mq(50em) {

components/_templates/generic/_generic.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
@include layout.container;
1010
display: grid;
1111
grid-column-gap: tokens.$grid-gutter;
12-
grid-row-gap: tokens.$grid-gutter / 2;
12+
grid-row-gap: tokens.$grid-gutter * 0.5;
1313
grid-template-areas: "header" "main" "sidebar";
1414
grid-template-columns: 1fr;
1515
@include media.mq(50em) {

components/_templates/meet/_meet.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
$leftMarginWidth: 14%;
1212
$leftMarginTextureWidth: 2em;
1313
$colGutterWidth: 1em;
14-
$rowGutterWidth: tokens.$grid-gutter / 2;
14+
$rowGutterWidth: tokens.$grid-gutter * 0.5;
1515
&__inner {
1616
display: grid;
1717
grid-template-columns: $colGutterWidth auto $colGutterWidth;

components/_templates/search/_search.scss

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
@include layout.container;
1010
}
1111
&__header {
12-
padding-top: tokens.$grid-gutter / 2;
13-
padding-bottom: tokens.$grid-gutter / 2;
14-
margin-bottom: tokens.$grid-gutter / 2;
12+
padding-top: tokens.$grid-gutter * 0.5;
13+
padding-bottom: tokens.$grid-gutter * 0.5;
14+
margin-bottom: tokens.$grid-gutter * 0.5;
1515
color: var(--theme-accent);
1616
background-color: var(--theme-accent-mod);
1717
}

components/footer/_footer.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
.sb-footer {
99
$padding: tokens.$grid-gutter;
10-
$narrowPadding: tokens.$grid-gutter / 2;
10+
$narrowPadding: tokens.$grid-gutter * 0.5;
1111
margin-top: $padding * 2;
1212
padding-top: $padding;
1313
padding-bottom: calc(#{$padding} + env(safe-area-inset-bottom));

components/gallery/_gallery.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
.sb-gallery {
44
display: grid;
5-
grid-gap: tokens.$grid-gutter / 2;
5+
grid-gap: tokens.$grid-gutter * 0.5;
66
grid-template-columns: repeat(auto-fit, minmax(18em, 1fr));
77
&__link {
88
display: block;

components/map/_map.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@
7272
&__list-more {
7373
@include helpers.button-reset;
7474
@include typography.all-caps;
75-
margin-top: $gutter / 2;
75+
margin-top: $gutter * 0.5;
7676
padding: 0.25em 0.5em;
7777
border: 2px solid var(--theme-accent-mod);
7878
background-color: var(--theme-background);

components/phase-banner/_phase-banner.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
}
3030
&__summary {
3131
display: inline-block;
32-
padding: ($bannerPadding / 2) $bannerPadding;
32+
padding: ($bannerPadding * 0.5) $bannerPadding;
3333
#{$self}--interactive & {
3434
padding-left: ($bannerPadding + $arrowMargin);
3535
cursor: pointer;
@@ -61,7 +61,7 @@
6161
}
6262
&__body {
6363
max-width: tokens.$measure-default;
64-
padding: ($bannerPadding / 2) $bannerPadding ($bannerPadding / 2)
64+
padding: ($bannerPadding * 0.5) $bannerPadding ($bannerPadding * 0.5)
6565
($bannerPadding + $arrowMargin);
6666
}
6767
}

components/stack/_stack.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,6 @@
44
display: flex;
55
flex-direction: column;
66
> * + * {
7-
margin-top: tokens.$grid-gutter / 2;
7+
margin-top: tokens.$grid-gutter * 0.5;
88
}
99
}

0 commit comments

Comments
 (0)