Skip to content

Commit 5b28451

Browse files
committed
Format scss
Signed-off-by: Sora Morimoto <[email protected]>
1 parent 10d1085 commit 5b28451

File tree

8 files changed

+29
-29
lines changed

8 files changed

+29
-29
lines changed

_sass/_featurelist.scss

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -166,16 +166,16 @@
166166
width: 1.2rem;
167167
height: 1.2em;
168168
margin-left: 0.5rem;
169-
content: '';
170-
background: url('../img/menu-down.svg') no-repeat 20%;
169+
content: "";
170+
background: url("../img/menu-down.svg") no-repeat 20%;
171171
background-size: 1.2rem;
172172
transition: transform 600ms ease;
173173

174174
.open & {
175175
transform: rotateX(180deg);
176176
}
177177

178-
[dir='rtl'] & {
178+
[dir="rtl"] & {
179179
float: left;
180180
margin-right: 0.5rem;
181181
margin-left: 0;

_sass/_grid.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
@use 'sass:math';
1+
@use "sass:math";
22

33
.intro {
44
margin: 0 math.div($grid-gutter, -2) (2 * $grid-gutter);
55

6-
[class*='g-col-'] {
6+
[class*="g-col-"] {
77
padding: 0 math.div($grid-gutter, 2);
88
}
99
}

_sass/_layout.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@use 'sass:math';
1+
@use "sass:math";
22

33
*,
44
*::before,
@@ -13,7 +13,7 @@ html {
1313
body {
1414
padding: 0;
1515
margin: 0;
16-
font-family: 'Open Sans', sans-serif;
16+
font-family: "Open Sans", sans-serif;
1717
font-size: 16px;
1818
font-weight: $font-weight-regular;
1919
line-height: 1.5;

_sass/_page-footer.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@use 'sass:color';
1+
@use "sass:color";
22

33
.synopsis {
44
width: 100%;
@@ -93,7 +93,7 @@
9393

9494
.page-footer .pipe-nav li + li::before {
9595
padding: 0 0.5em;
96-
content: '| ';
96+
content: "| ";
9797
}
9898

9999
.page-footer .grid-container {

_sass/_page-header.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
.page-menu {
1111
margin-left: $spacing;
1212

13-
[dir='rtl'] & {
13+
[dir="rtl"] & {
1414
margin-right: $spacing;
1515
margin-left: 0;
1616
}
@@ -24,7 +24,7 @@
2424
margin-left: $spacing;
2525
font-size: 1.1em;
2626

27-
[dir='rtl'] & {
27+
[dir="rtl"] & {
2828
margin-right: $spacing;
2929
margin-left: 0;
3030
}

_sass/_page-menu.scss

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ $svg-height: 24;
22
$trans-timing: 600ms;
33

44
@mixin svg-menu-icon($color: currentColor, $height: $svg-height) {
5-
background: url('../img/menu.svg') no-repeat 50%;
5+
background: url("../img/menu.svg") no-repeat 50%;
66
}
77

88
@mixin rotate-submenu-toggle() {
@@ -68,8 +68,8 @@ $trans-timing: 600ms;
6868
display: block;
6969
width: 1.5rem;
7070
height: 1.5rem;
71-
content: '';
72-
background: url('../img/menu-down.svg') no-repeat 50%;
71+
content: "";
72+
background: url("../img/menu-down.svg") no-repeat 50%;
7373
background-size: 1.5rem;
7474
transition: transform $trans-timing ease;
7575
}
@@ -101,7 +101,7 @@ $trans-timing: 600ms;
101101
border-bottom: 1px solid $color-spacer;
102102
transition: max-height $trans-timing ease;
103103

104-
[dir='rtl'] & {
104+
[dir="rtl"] & {
105105
padding: ($svg-height + $mobile-mt) 0 10px 20px;
106106
}
107107

@@ -131,7 +131,7 @@ $trans-timing: 600ms;
131131
display: block;
132132
width: 1.5rem;
133133
height: 1.5rem;
134-
content: '';
134+
content: "";
135135
background-size: 1.5rem;
136136
}
137137
}

_sass/_popup.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,15 +4,15 @@
44
left: 0;
55
width: 100%;
66

7-
input[type='checkbox'] + label {
7+
input[type="checkbox"] + label {
88
position: absolute;
99
transition:
1010
opacity 0.3s ease-in-out,
1111
transform 0.6s ease-in-out;
1212
will-change: opacity, transform;
1313
}
1414

15-
input[type='checkbox']:checked + label {
15+
input[type="checkbox"]:checked + label {
1616
opacity: 0;
1717
transform: translateY(100%);
1818
}

_sass/style.scss

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
@import 'variables';
2-
@import 'a11y';
3-
@import 'content';
4-
@import 'featurelist';
5-
@import 'grid';
6-
@import 'layout';
7-
@import 'logo-box';
8-
@import 'page-header';
9-
@import 'page-footer';
10-
@import 'page-menu';
11-
@import 'utils';
1+
@import "variables";
2+
@import "a11y";
3+
@import "content";
4+
@import "featurelist";
5+
@import "grid";
6+
@import "layout";
7+
@import "logo-box";
8+
@import "page-header";
9+
@import "page-footer";
10+
@import "page-menu";
11+
@import "utils";

0 commit comments

Comments
 (0)