Skip to content

Commit

Permalink
✨ feat(link-ext.scss): Link pseudoelements will now use currentColor …
Browse files Browse the repository at this point in the history
…instead of fixed link color
  • Loading branch information
Spiderpig86 committed Nov 21, 2022
1 parent 4bfb7c0 commit bd9ab44
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions dist/cirrus-all.css
Original file line number Diff line number Diff line change
Expand Up @@ -21220,7 +21220,7 @@ details.accordion[open] summary.accordion__summary:after {
position: absolute;
height: 2px;
width: 0;
background: #4643e2;
background: currentColor;
bottom: -0.25em;
}

Expand Down Expand Up @@ -21265,7 +21265,7 @@ details.accordion[open] summary.accordion__summary:after {
position: absolute;
height: 2px;
width: 0;
background: #4643e2;
background: currentColor;
}

.utb::before {
Expand Down Expand Up @@ -21326,7 +21326,7 @@ details.accordion[open] summary.accordion__summary:after {
width: 2px;
width: 0.1 rem;
height: 0;
background: #4643e2;
background: currentColor;
}

.usquare::before {
Expand Down
2 changes: 1 addition & 1 deletion dist/cirrus-all.min.css

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions dist/cirrus.css
Original file line number Diff line number Diff line change
Expand Up @@ -16076,7 +16076,7 @@ details.accordion[open] summary.accordion__summary:after {
position: absolute;
height: 2px;
width: 0;
background: #4643e2;
background: currentColor;
bottom: -0.25em;
}

Expand Down Expand Up @@ -16121,7 +16121,7 @@ details.accordion[open] summary.accordion__summary:after {
position: absolute;
height: 2px;
width: 0;
background: #4643e2;
background: currentColor;
}

.utb::before {
Expand Down Expand Up @@ -16182,7 +16182,7 @@ details.accordion[open] summary.accordion__summary:after {
width: 2px;
width: 0.1 rem;
height: 0;
background: #4643e2;
background: currentColor;
}

.usquare::before {
Expand Down
2 changes: 1 addition & 1 deletion dist/cirrus.min.css

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions src/components/link-ext.scss
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ $generate-utility: should-generate-classes($LINKS-EXT);
position: absolute;
height: 2px;
width: 0;
background: $cirrus-link-dark;
background: currentColor;
bottom: -0.25em;
}

Expand Down Expand Up @@ -64,7 +64,7 @@ $generate-utility: should-generate-classes($LINKS-EXT);
position: absolute;
height: 2px;
width: 0;
background: $cirrus-link-dark;
background: currentColor;
}

&::before {
Expand Down Expand Up @@ -133,7 +133,7 @@ $generate-utility: should-generate-classes($LINKS-EXT);
width: 2px;
width: 0.1 rem;
height: 0;
background: $cirrus-link-dark;
background: currentColor;
}

&::before {
Expand Down

0 comments on commit bd9ab44

Please sign in to comment.