[design proposal] adding a mixin to style social issue badge

This commit is contained in:
2021-08-20 20:40:05 +02:00
parent 2a3f869882
commit 4d65c54996
9 changed files with 42 additions and 11 deletions

View File

@@ -3,7 +3,7 @@ body {
div.responsive {
position: fixed;
top: 0;
left: 50%;
left: 0;
background-color: #4a4d50;
color: white;
padding: 0.5em;

View File

@@ -157,8 +157,10 @@ $chill-yellow: $yellow;
$chill-red: $red;
$chill-beige: $beige;
$chill-pink: $pink;
$chill-gray: $gray-600;
$chill-dark-gray: $gray-800;
$chill-gray: $gray-600;
$chill-l-gray: $gray-400;
$chill-ll-gray: $gray-300;
$chill-light-gray: $gray-200;
$chill-llight-gray: $gray-100;
// scss-docs-end theme-color-variables
@@ -185,8 +187,10 @@ $chill-colors: (
"chill-red": $chill-red,
"chill-beige": $chill-beige,
"chill-pink": $chill-pink,
"chill-gray": $chill-gray,
"chill-dark-gray": $chill-dark-gray,
"chill-gray": $chill-gray,
"chill-l-gray": $chill-l-gray,
"chill-ll-gray": $chill-ll-gray,
"chill-light-gray": $chill-light-gray,
"chill-llight-gray": $chill-llight-gray,
);