links variables translated from colors to components

This commit is contained in:
Raphael Goetter 2017-12-07 14:50:01 +01:00
parent 5da87c3e99
commit 8f61160426
2 changed files with 7 additions and 6 deletions

View File

@ -143,17 +143,18 @@ $color-muted : $gray-200;
$color-base : $gray-900;
$background-base : $white;
$link-color : $gray-800;
$link-color-hover : darken($link-color, 15%);
$link-decoration : none;
$link-decoration-hover : underline;
$forms-color : $gray-800;
// ---------------
// Components zone
// ---------------
// Component: links
$link-color : $gray-800;
$link-color-hover : darken($link-color, 15%);
$link-decoration : none;
$link-decoration-hover : underline;
// Global border-radius
$border-radius: 0 !default;

View File

@ -95,7 +95,7 @@ http://www.alsacreations.com/tuto/lire/1493-css3-flexbox-layout-module.html
}
.flex-container--column,
.flex-row {
.flex-column {
@extend .flex-container;
flex-direction: column;
}