started working on a screencast icon

This commit is contained in:
2025-03-08 20:54:00 +01:00
parent bd073c6dff
commit dcf4cd7452
6 changed files with 29 additions and 1 deletions

View File

@@ -0,0 +1,16 @@
.screencast{
/* Colors */
$sc-active: indigo;
$sc-inactive: darkorchid;
$sc-label-active: maroon;
$sc-label-inactive: gainsboro;
background: $sc-inactive;
color: $sc-label-inactive;
&--active{
background: $sc-active;
color: $sc-label-active;
}
}