Skip to content

Commit b7f1569

Browse files
committed
fix: body bg issue
1 parent 8f4220f commit b7f1569

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

index.css

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,18 @@
33
* the theme is same as the system theme.
44
*/
55
:root {
6-
--bg-loading-screen: #f2f4f7;
6+
--bg-body: #f2f4f7;
77
--bg-devtron-loader: #e5f2ff;
88
--fill-devtron-loader: #0066cc;
99

1010

1111
@media (prefers-color-scheme: dark) {
12-
--bg-loading-screen: #0d0f1c;
12+
--bg-body: #0d0f1c;
1313
--bg-devtron-loader: #172433;
1414
--fill-devtron-loader: #74B5FF;
1515
}
1616
}
1717

1818
body {
19-
background: var(--bg-loading-screen);
19+
background: var(--bg-body);
2020
}

src/css/base.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@ body {
4646
Cantarell,
4747
'Helvetica Neue',
4848
sans-serif;
49-
background: var(--bg-tertiary);
5049

5150
a {
5251
color: var(--B500);

0 commit comments

Comments
 (0)