wrap indicator for grid

This commit is contained in:
2025-02-23 18:58:32 -05:00
parent 84d21239ed
commit 4950695388
8 changed files with 91 additions and 39 deletions

View File

@ -2,13 +2,13 @@ $header-Y: 30px;
$footer-Y: 30px;
$component-padding: 20px;
@mixin text-colors {
--text-red: rgb(200, 0, 0);
--text-green: rgb(0, 200, 0);
--text-blue: rgb(0, 0, 200);
--text-cyan: rgb(18,167,148);
@mixin color-matrix {
--color-red: 200, 0, 0;
--color-green: 0, 200, 0;
--color-blue: 0, 0, 200;
--color-cyan: 18,167,148;
}
@mixin css-global {
@include text-colors;
@include color-matrix;
}