opn-repo icon indicating copy to clipboard operation
opn-repo copied to clipboard

Dracula theme missing icons

Open SephGER opened this issue 1 year ago • 2 comments

Hi, after activating the Dracula theme my dashboard is missing some icons: grafik

I found out that the Font-Awesome v4-shims.min.css is overwriting the default font with a wrong unicode symbol:

v4-shims.min.css (Line 444):

.fa.fa-exchange::before
{
  content: "\f362";
}

font-awesome.min.css (Line 839):

.fa-arrow-right-arrow-left::before, .fa-exchange::before
{
  content: "\f0ec";
}

If i change the css to use the default font-awesome code (\f0ec) it works

grafik

SephGER avatar Feb 20 '24 08:02 SephGER