From cf1fbb69d7cdb67219be187fc38feea5a6325f45 Mon Sep 17 00:00:00 2001 From: piotrruss Date: Fri, 24 Sep 2021 23:25:25 +0200 Subject: fixed first spinner --- components/Layout.js | 4 ++-- styles/main/_splash.scss | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/components/Layout.js b/components/Layout.js index 572e961..7caa5a5 100644 --- a/components/Layout.js +++ b/components/Layout.js @@ -1,6 +1,6 @@ import styles from 'styles/Main.module.scss' import React from 'react' -import { Header, Popup, Splash } from 'components' +import { Header, Popup } from 'components' import useSettings from 'hooks/useSettings' import PropTypes from 'prop-types' @@ -9,7 +9,7 @@ const Layout = ({ }) => { const { settings } = useSettings() - if (!settings || !settings.theme || !settings.language) return + if (!settings || !settings.theme || !settings.language) return null return (
diff --git a/styles/main/_splash.scss b/styles/main/_splash.scss index 82347d0..d1dc441 100644 --- a/styles/main/_splash.scss +++ b/styles/main/_splash.scss @@ -16,7 +16,7 @@ } svg { - font-size: 64px; + font-size: 72px; color: #555; } -- cgit v1.2.3