0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

SASS

Posted at

1.yarn add sass
にてインストール。

2.cssの拡張子を.scssへ変更

3.記述方法
下記のような入れ子や、変数名を定義して色を指定なども可能

$main-color: pink;

.App {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  font-size: 16px;

  h2 {
    background-color: $main-color;
  }
}
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?