Adjust default styles

This commit is contained in:
jeffvli
2022-05-03 19:59:09 -07:00
parent d779dcb333
commit ee1576fc78
4 changed files with 6 additions and 10 deletions

View File

@@ -16,11 +16,13 @@ html {
position: absolute;
overflow-y: hidden;
overflow-x: hidden;
color: var(--content-text-color);
background: var(--content-bg);
}
@media only screen and (max-width: 640px) {
body {
body,
html {
overflow-x: auto;
}
}

View File

@@ -0,0 +1,2 @@
body[data-theme='dark'] {
}

View File

@@ -3,6 +3,7 @@
--secondary-color: #c7648d;
--content-bg: #181819;
--content-text-color: #c1c2bb;
--sidebar-bg: #000000;
--sidebar-btn-color: #ffffff;

View File

@@ -1,9 +0,0 @@
const base = {
focusRing: 'auto',
spacing: {
xs: 2,
sm: 5,
},
};
export default base;