Skip to content

Commit a79139d

Browse files
committed
๐Ÿšฉ: ํ•˜์œ„ ๋””๋ ‰ํ† ๋ฆฌ scss์— ๋ฃจํŠธ ํŒจํ‚ค์ง€๋ฅผ ์ƒ์† ๋ฐ›์•„ scss๊ฐ€ ์ž˜์ ์šฉ๋˜๋Š”์ง€ ํ™•์ธ ๋ฐ ๊ฒ€ํ†  ์™„๋ฃŒ
1 parent a5e543d commit a79139d

File tree

5 files changed

+47
-0
lines changed

5 files changed

+47
-0
lines changed

โ€Žtrends/sass/index.htmlโ€Ž

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
4+
<head>
5+
<meta charset="UTF-8">
6+
<meta name="viewport" content="width=device-width, initial-scale=1.0">
7+
<title>Document</title>
8+
<link rel="stylesheet" href="./test.scss">
9+
<link rel="stylesheet" href="./test.css">
10+
</head>
11+
12+
<body>
13+
<div>
14+
<h1>test</h1>
15+
</div>
16+
</body>
17+
18+
</html>

โ€Žtrends/sass/package.jsonโ€Ž

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
{
2+
"name": "test",
3+
"version": "1.0.0",
4+
"main": "index.js",
5+
"scripts": {
6+
"test": "echo \"Error: no test specified\" && exit 1",
7+
"dev": "sass test.scss test.css"
8+
},
9+
"keywords": [],
10+
"author": "",
11+
"license": "ISC",
12+
"description": ""
13+
}

โ€Žtrends/sass/test.cssโ€Ž

Lines changed: 8 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

โ€Žtrends/sass/test.css.mapโ€Ž

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

โ€Žtrends/sass/test.scssโ€Ž

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
div {
2+
background-color: black;
3+
4+
h1 {
5+
color: white;
6+
}
7+
}

0 commit comments

Comments
ย (0)