Skip to content

Commit 0796f36

Browse files
committed
fix(web): adds hardcoded background-color to prevent flashing
1 parent b69276a commit 0796f36

File tree

3 files changed

+1
-9
lines changed

3 files changed

+1
-9
lines changed

src/index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!doctype html>
2-
<html lang="en">
2+
<html lang="en" style="background-color: #181818">
33
<head>
44
<meta charset="UTF-8" />
55
<base target="_blank" />

src/views/options/index.html

-4
Original file line numberDiff line numberDiff line change
@@ -270,10 +270,6 @@
270270
color 0.5s,
271271
background-color 0.5s;
272272
will-change: color, background-color;
273-
274-
@media (prefers-color-scheme: dark) {
275-
background: #181818;
276-
}
277273
}
278274

279275
wc-trakt-extension {

src/views/popup/index.html

-4
Original file line numberDiff line numberDiff line change
@@ -276,10 +276,6 @@
276276
will-change: color, background-color;
277277
-webkit-font-smoothing: antialiased;
278278
-moz-osx-font-smoothing: grayscale;
279-
280-
@media (prefers-color-scheme: dark) {
281-
background: #181818;
282-
}
283279
}
284280

285281
wc-trakt-extension {

0 commit comments

Comments
 (0)