From 7c67d7824c7813116d6a7a9c1d5ab96535ebf064 Mon Sep 17 00:00:00 2001 From: Mike Owino Date: Mon, 7 Mar 2022 22:30:40 +0300 Subject: [PATCH] ... --- components/shutdownNotice/package.json | 3 - components/shutdownNotice/shutdownNotice.js | 32 ----- .../shutdownNotice/shutdownNotice.module.css | 130 ------------------ 3 files changed, 165 deletions(-) delete mode 100644 components/shutdownNotice/package.json delete mode 100644 components/shutdownNotice/shutdownNotice.js delete mode 100644 components/shutdownNotice/shutdownNotice.module.css diff --git a/components/shutdownNotice/package.json b/components/shutdownNotice/package.json deleted file mode 100644 index a5ab2931d..000000000 --- a/components/shutdownNotice/package.json +++ /dev/null @@ -1,3 +0,0 @@ -{ - "main": "shutdownNotice.js" -} diff --git a/components/shutdownNotice/shutdownNotice.js b/components/shutdownNotice/shutdownNotice.js deleted file mode 100644 index e82555166..000000000 --- a/components/shutdownNotice/shutdownNotice.js +++ /dev/null @@ -1,32 +0,0 @@ -import { Dialog, Typography, Button } from '@material-ui/core'; -import classes from "./shutdownNotice.module.css"; -import PowerSettingsNewIcon from "@material-ui/icons/PowerSettingsNew"; - -export default function shutdownNotice({ close }) { - - return ( - -
-
- - - Site live again. - - - Few changes happening in the website, you might encounter some few bugs in the next few days. - -
- -
-
-
-
- ) -} diff --git a/components/shutdownNotice/shutdownNotice.module.css b/components/shutdownNotice/shutdownNotice.module.css deleted file mode 100644 index f13401393..000000000 --- a/components/shutdownNotice/shutdownNotice.module.css +++ /dev/null @@ -1,130 +0,0 @@ -.dialogContainer { - display: flex; - align-items: center; - justify-content: center; - min-width: 100vw; - min-height: 100vh; -} - -.warningContainer { - display: flex; - align-items: center; - justify-content: center; - flex-direction: column; - max-width: 540px; -} - -.warningIcon { - width: 140px !important; - height: 140px !important; - margin-bottom: 30px !important; - font-size: 30px !important; - fill: #646464 !important; -} - -.title1 { - font: normal normal normal 23px/36px Inter !important; - letter-spacing: 0px !important; -} - -.title2 { - font: normal normal bold 29px/36px Inter !important; - letter-spacing: 0px !important; - margin-bottom: 36px !important; -} - -.para1 { - text-align: center; - font: normal normal bold 20px/28px Inter !important; - letter-spacing: 0px !important; - margin-bottom: 33px !important; -} - -.para2 { - font: normal normal normal 16px/26px Inter !important; - letter-spacing: 0px; - color: #646464; - margin-bottom: 32px !important; -} - -.buttonsContainer { - padding: 0px 24px; -} - -.primaryButton { - margin-bottom: 20px !important; - background: transparent linear-gradient(180deg, #1C45F4 0%, #0F1DD3 100%) 0% 0% no-repeat padding-box !important; - min-width: 457px !important; -} - -.secondaryButton { - -} - -.buttonTextPrimary { - font: normal normal bold 16px/19px Inter !important; - letter-spacing: 0px !important; - color: #FFFFFF !important; - text-transform: none; -} - -.buttonTextSecondary { - font: normal normal bold 16px/19px Inter !important; - letter-spacing: 0px !important; - color: #000 !important; - text-transform: none; -} - -@media screen and (max-width: 600px) { - .warningContainer { - max-width: 340px; - } - - .para1 { - font: normal normal bold 16px/28px Inter !important; - } - - .warningIcon { - height: 50px !important; - margin-bottom: 30px !important; - } - - .buttonTextPrimary { - font: normal normal bold 16px/19px Inter !important; - } - - .primaryButton { - margin-bottom: 20px !important; - background: transparent linear-gradient(180deg, #1C45F4 0%, #0F1DD3 100%) 0% 0% no-repeat padding-box !important; - min-width: 320px !important; - } -} - -@media screen and (max-width: 360px) { - .warningContainer { - max-width: 260px; - } - - .para1 { - font: normal normal bold 15px/22px Inter !important; - } - - .para2 { - font: normal normal bold 13px/18px Inter !important; - } - - .warningIcon { - height: 40px !important; - margin-bottom: 20px !important; - } - - .buttonTextPrimary { - font: normal normal bold 13px/16px Inter !important; - } - - .primaryButton { - margin-bottom: 20px !important; - background: transparent linear-gradient(180deg, #1C45F4 0%, #0F1DD3 100%) 0% 0% no-repeat padding-box !important; - min-width: 260px !important; - } -}