8 lines
121 B
SCSS
8 lines
121 B
SCSS
.test {
|
|
// 可以通过 @apply 多个样式封装整体样式
|
|
@apply mt-4 ml-4;
|
|
|
|
padding-top: 4px;
|
|
color: red;
|
|
}
|