diff --git a/package.json b/package.json
index b13de57f..360ace46 100644
--- a/package.json
+++ b/package.json
@@ -21,9 +21,9 @@
"fontsource-lexend-deca": "^3.0.10",
"fontsource-roboto": "^3.0.3",
"lodash.merge": "4.6.2",
- "react": "16.14.0",
+ "react": "17.0.1",
"react-clock": "^2.4.0",
- "react-dom": "16.14.0",
+ "react-dom": "17.0.1",
"react-modal": "3.11.2",
"react-toastify": "6.0.9",
"supports-webp": "2.0.1"
diff --git a/public/index.html b/public/index.html
index dc5ffe63..c81fe2ec 100644
--- a/public/index.html
+++ b/public/index.html
@@ -9,7 +9,30 @@
-
+
diff --git a/src/components/modals/settings/Section.jsx b/src/components/modals/settings/Section.jsx
index 7b71cab5..611b4dae 100644
--- a/src/components/modals/settings/Section.jsx
+++ b/src/components/modals/settings/Section.jsx
@@ -40,7 +40,7 @@ export default class Section extends React.PureComponent {
this.toggleSection()}>{this.props.title}
{expandMore}
{slider}
-
diff --git a/src/components/modals/settings/sections/BackgroundSettings.jsx b/src/components/modals/settings/sections/BackgroundSettings.jsx
index 4d912d89..95336a50 100644
--- a/src/components/modals/settings/sections/BackgroundSettings.jsx
+++ b/src/components/modals/settings/sections/BackgroundSettings.jsx
@@ -162,7 +162,7 @@ export default class BackgroundSettings extends React.PureComponent {
localStorage.setItem('backgroundAPI', document.getElementById('backgroundAPI').value)}
diff --git a/src/components/modals/settings/sections/SearchSettings.jsx b/src/components/modals/settings/sections/SearchSettings.jsx
index e9f0ecde..10c9d79b 100644
--- a/src/components/modals/settings/sections/SearchSettings.jsx
+++ b/src/components/modals/settings/sections/SearchSettings.jsx
@@ -29,7 +29,7 @@ export default class SearchSettings extends React.PureComponent {
- SettingsFunctions.setSearchEngine(document.getElementById('searchEngine').value)}
diff --git a/src/scss/index.scss b/src/scss/index.scss
index 63d5a442..8470cb88 100644
--- a/src/scss/index.scss
+++ b/src/scss/index.scss
@@ -19,14 +19,13 @@
body {
background: #2f3640;
margin: 0;
- -webkit-font-smoothing: antialiased;
- -moz-osx-font-smoothing: grayscale;
- font-family: 'Lexend Deca', sans-serif;
overflow: hidden;
}
* {
font-family: 'Lexend Deca', 'Roboto' !important;
+ -webkit-font-smoothing: antialiased;
+ -moz-osx-font-smoothing: grayscale;
outline: none;
}
@@ -52,6 +51,10 @@ body {
opacity: 1;
}
+::selection {
+ background-color: #c2c2c2;
+}
+
#root {
min-height: 100vh;
display: grid;
@@ -66,6 +69,14 @@ body {
background-attachment: fixed;
}
+#backgroundVideo {
+ position: fixed;
+ right: 0;
+ bottom: 0;
+ min-width: 100%;
+ min-height: 100%;
+}
+
.fade-in {
@include animation('fadein 2s');
}
@@ -88,16 +99,4 @@ body {
.creditlink {
text-decoration: none;
color: white;
-}
-
-::selection {
- background-color: #c2c2c2;
-}
-
-#backgroundVideo {
- position: fixed;
- right: 0;
- bottom: 0;
- min-width: 100%;
- min-height: 100%;
}
\ No newline at end of file