Skip to content

Commit 8b85b98

Browse files
committed
fix: body styling issue
1 parent 8f4220f commit 8b85b98

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

index.css

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,20 @@
33
* the theme is same as the system theme.
44
*/
55
:root {
6-
--bg-loading-screen: #f2f4f7;
6+
/* Using the same name as in color palette to ensure this is applied when styles are loading */
7+
--bg-tertiary: #f2f4f7;
78
--bg-devtron-loader: #e5f2ff;
89
--fill-devtron-loader: #0066cc;
910

1011

1112
@media (prefers-color-scheme: dark) {
12-
--bg-loading-screen: #0d0f1c;
13+
--bg-tertiary: #0d0f1c;
1314
--bg-devtron-loader: #172433;
1415
--fill-devtron-loader: #74B5FF;
1516
}
1617
}
1718

1819
body {
19-
background: var(--bg-loading-screen);
20+
margin: 0;
21+
background: var(--bg-tertiary);
2022
}

0 commit comments

Comments
 (0)