Skip to content

Instantly share code, notes, and snippets.

@doolez
doolez / input.scss
Created January 25, 2024 00:09
Generated by SassMeister.com.
// test for compiled css order
// mixin experiment
%text-links-ph {
&:link {
color: yellow;
}
&:visited {
color: yellow;
@doolez
doolez / input.scss
Created January 25, 2024 00:04
Generated by SassMeister.com.
// test for compiled css order
// mixin experiment
@mixin text-links ($color: green) {
&:link {
color: $color;
}
&:visited {
color: $color;