Skip to content

Commit a283be2

Browse files
committed
Fix warnings: migrate sass-converter version to v3.0+
cf. https://sass-lang.com/d/import
1 parent 93a5711 commit a283be2

File tree

11 files changed

+46
-32
lines changed

11 files changed

+46
-32
lines changed

_sass/components/aboutdojocon.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
@use '../global/variables' as *;
12
.aboutdojocon {
23
&-bg {
34
background: url("/img/aboutdojocon/aboutdojocon-bg.jpg") no-repeat center center;

_sass/components/staff.scss

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
@use '../global/variables' as *;
2+
13
.staff {
24
background: #FBF6FA;
35
padding: 48px 0;

_sass/global/base.scss

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
/* the definition of the common style */
22

3+
@use 'variables' as *;
4+
35
html {
46
scroll-behavior: smooth;
57
}

_sass/global/variables.scss

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,9 @@ $yellow: #DABC00;
66
$black: #2C0303;
77
$white: #fff;
88

9+
// LAYOUT
10+
$navbar: 60px;
11+
912
// COLOR SET
1013
$main-color: $red;
1114
$secondary-color: $purple;
@@ -21,4 +24,4 @@ $color-line: #00bb00;
2124
// その他のカラーセットについてはBootstrapのCSS カスタムプロパティも参照してください。
2225
// かなり多くのカラーが定義されています。
2326
// https://getbootstrap.jp/docs/5.3/customize/color/
24-
// 利用例: background-color: var(--bs-orange);
27+
// 利用例: background-color: var(--bs-orange);

_sass/includes/articles.scss

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
@use '../global/variables' as *;
2+
13
/* stylesheet for `_includes/articles.html` */
24

35
.article {

_sass/includes/footer.scss

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
@use '../global/variables' as *;
2+
13
/* stylesheet for `_includes/footer.html` */
24

35
footer {

_sass/includes/navbar.scss

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
@use '../global/variables' as *;
2+
13
/* stylesheet for `_includes/navbar.html` */
24

35
.navbar-light .navbar-nav .active>.nav-link,

_sass/layouts/page.scss

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
@use '../global/variables' as *;
2+
13
/* stylesheet for `_layouts/page.html` */
24

35
// 規約ページスタイル

_sass/layouts/post.scss

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
@use '../global/variables' as *;
2+
13
/* stylesheet for `_layouts/post.html` */
24

35
.post {

_sass/pages/index.scss

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
@use '../global/variables' as *;
2+
13
/* stylesheet for `index.md` */
24
.top {
35
position: relative;

0 commit comments

Comments
 (0)