Skip to content

Commit b236f5a

Browse files
committed
templates: fix indentation in SASS component
This fixes the following build error ``` ERROR in ./source/index.sass Module build failed (from ./node_modules/mini-css-extract-plugin/dist/loader.js): ModuleBuildError: Module build failed (from ./node_modules/sass-loader/dist/cjs.js): SassError: Illegal nesting: Only properties may be nested beneath properties. on line 14 of source/components/app.sass >> .title { ---^ ```
1 parent f80f0d5 commit b236f5a

File tree

1 file changed

+9
-9
lines changed
  • src/templates/base-source-template/sass/source/components

1 file changed

+9
-9
lines changed

src/templates/base-source-template/sass/source/components/app.sass

+9-9
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@
1111
flex-direction: column
1212
padding: 60px 0
1313

14-
.title
15-
font-size: 20px
16-
border: 4px solid white
17-
font-weight: 500
18-
padding: 7px 15px
19-
text-align: center
20-
border-radius: 10px
21-
letter-spacing: 5px
22-
margin: 0
14+
.title
15+
font-size: 20px
16+
border: 4px solid white
17+
font-weight: 500
18+
padding: 7px 15px
19+
text-align: center
20+
border-radius: 10px
21+
letter-spacing: 5px
22+
margin: 0
2323

2424
.content
2525
display: flex

0 commit comments

Comments
 (0)