Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion packages/site-kit/src/lib/components/Text.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@
a.permalink {
position: absolute !important;
display: block;
background: url(../icons/link.svg) 50% 50% no-repeat;
background: url(../icons/hash-light.svg) 50% 50% no-repeat;
background-size: 1em 1em;
width: 1.2em;
height: 0.8em;
Expand All @@ -346,6 +346,10 @@
scale: 0.8;
}
:root.dark & {
background: url(../icons/hash-dark.svg) 50% 50% no-repeat;
}
@media (min-width: 768px) {
left: 0.7em;
opacity: 0;
Expand Down
Loading