Scss basics

This commit is contained in:
Unknown
2017-10-15 18:43:44 +01:00
parent 543bb91568
commit 6c835bee44
10 changed files with 175 additions and 0 deletions

View File

@ -0,0 +1,22 @@
@import "Base/base";
blockquote
{
border-left: 2px solid $color2;
padding-left: $spacing-normal;
}
.box
{
background: $color3;
padding: $spacing-normal;
> p { margin: 0; }
}
.rounded-box
{
@extend .box;
@include vendor(border-radius, 20px);
}