1
0
mirror of https://github.com/kognise/water.css.git synced 2025-08-12 16:14:34 +02:00

use of variables

This commit is contained in:
Federico Pérez
2019-04-08 00:33:26 -03:00
parent a9a13c9d74
commit f5ee2353a6
3 changed files with 4 additions and 1 deletions

View File

@@ -3,7 +3,7 @@ blockquote {
background: $background-alt;
margin: 1.5em 1em;
padding: 0.5em 1em;
border-radius: 6px;
border-radius: $border-radius;
border-bottom-left-radius: 0px;
border-top-left-radius: 0px;
}

View File

@@ -1,3 +1,4 @@
@import 'variables';
@import 'base';
@import 'typography';
@import 'forms';

View File

@@ -0,0 +1,2 @@
// radius
$border-radius: 6px;