You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Dear Mr/Maam;
I am new to Github;
I am aware that this field is designated for reporting issues, and I apologize for any inconvenience this may cause
I would be grateful if you could consider incorporating the new variable system syntax of CSS. As a group of web developers, we believe that integrating this SCSS variable system as a CSS feature:
This change would greatly simplify our programming tasks and enhance efficiency compared to the current approach. I hope this change will be beneficial to all programmers in the world.
Furthermore, the lengthy process of compiling SCSS to CSS significantly impacts our productivity.
I sincerely appreciate your great efforts and the assistance you have provided to us, and I would like to extend my heartfelt thanks.
Yours,
Kotb456;
The text was updated successfully, but these errors were encountered:
Dear Mr/Maam;
I am new to Github;
I am aware that this field is designated for reporting issues, and I apologize for any inconvenience this may cause
I would be grateful if you could consider incorporating the new variable system syntax of CSS. As a group of web developers, we believe that integrating this SCSS variable system as a CSS feature:
$color: red; .test { $background: white; color: $color, black; background-color: $background, white; }
This change would greatly simplify our programming tasks and enhance efficiency compared to the current approach. I hope this change will be beneficial to all programmers in the world.
:root { --color: red; } .test { --background: black; color: var(--color, black); background-color: var(--background, white); }
Furthermore, the lengthy process of compiling SCSS to CSS significantly impacts our productivity.
I sincerely appreciate your great efforts and the assistance you have provided to us, and I would like to extend my heartfelt thanks.
Yours,
Kotb456;
The text was updated successfully, but these errors were encountered: