スタイルの変更
Sass
Sassファイルの拡張子は.scss.
設定をインストールすると、node-modulesフォルダにnode-sassフォルダが作成されます.(package source code) を更新します.
Nesting機能の適用2
外部ファイル ex)
Sassファイルの拡張子は.scss.
設定
npm install node-sass --save
--save
: package.jsonにインストールされているパッケージの名前とバージョン情報Nesting機能の適用
nav ul {
margin: 0;
padding: 0;
list-style: none;
}
nav li {
display: inline-block;
}
nav a {
display: block;
padding: 6px 12px;
text-decoration: none;
}
既存のcssが上記と同じである場合、次のように最上位要素にサブ要素のスタイルプロパティを内定できます.親要素から子要素へのオーバーラップ表現をNesting
と呼びます.nav {
ul {
margin: 0;
padding: 0;
list-style: none;
li {
display: inline-block;
}
}
a {
display: block;
padding: 6px 12px;
text-decoration: none;
}
}
その他の機能login-container {
display: flex;
justify-content: center;
align-items: center
}
button {
width: 200px;
height: 100px;
background-color: blue;
}
button:hover {
background-color: red;
cursor: pointer;
}
input {
background-color: blue;
}
input:focus {
background-color: red;
}
上記のcssファイルは、次のように変更できます.$theme-color: blue;
@mixin flex-center($justify: center, $align: center) {
display: flex;
justify-content: $justify;
align-items: $align
}
login-container {
@include flex-center(center, center);
button {
width: 200px;
height: 100px;
background-color: $theme-color;
&:hover {
background-color: red;
cursor: pointer;
}
}
input {
background-color: $theme-color;
&:focus {
background-color: red;
}
}
}
$<변수 명>
は、サブ変数を提供する.@mixin <함수 명>
の場合、@include <함수 명>
のように関数として使用することができる.($justify: center, $align: center)
のデフォルト値とcss設定値を受け入れることができます.&:hover
によって、特定の条件下のcss値、例えば&
を設定することができる.外部ファイル
import <경로>
に設定された関数または変数は、scss
を使用して使用することができる./src/styles/common.scss
ファイルが存在する場合、@import "/src/styles/common.scss";
Reference
この問題について(スタイルの変更), 我々は、より多くの情報をここで見つけました https://velog.io/@gunu/SassSCSS를-통한-스타일-수정テキストは自由に共有またはコピーできます。ただし、このドキュメントのURLは参考URLとして残しておいてください。
Collection and Share based on the CC Protocol