Add new variants for cart buttons

This commit is contained in:
2021-11-04 16:04:42 +01:00
parent 50835fa6f6
commit cb175073d0
5 changed files with 27 additions and 3 deletions

View File

@@ -79,7 +79,7 @@
/*
** Color Variants
*/
// Pink
// Pink Light
&--pink {
color: $color-text;
background: $color-secondary-light;
@@ -96,6 +96,24 @@
}
}
// Pink
&--pink {
color: #fff;
background: $color-secondary;
// Hover
&:hover {
color: $color-text;
background: $color-secondary;
}
.text-split__line {
&:last-child {
color: $color-text;
// color: #fff;
}
}
}
// Beige
&--beige {
$color-button: #F2D3B8;