diff --git a/web/components/ui/Content/Content.tsx b/web/components/ui/Content/Content.tsx index f0c8422fa..845f89b0b 100644 --- a/web/components/ui/Content/Content.tsx +++ b/web/components/ui/Content/Content.tsx @@ -110,67 +110,68 @@ export default function ContentComponent() { }); return ( - -
- +
+ +
+ -
- {online && } - {!online && ( - + {online && } + {!online && ( + + )} + - )} - -
-
-
- - {externalActionButtons} - - setShowNotifyPopup(true)} - notificationClosed={() => disableNotifyReminderPopup()} - > - setShowNotifyPopup(true)} /> - - - - disableNotifyReminderPopup()} - handleCancel={() => disableNotifyReminderPopup()} - > - -
-
-
- -
+
+
+ + {externalActionButtons} + + setShowNotifyPopup(true)} + notificationClosed={() => disableNotifyReminderPopup()} + > + setShowNotifyPopup(true)} /> + + -
- - {isChatVisible && isMobile && ( - - {/*
+ disableNotifyReminderPopup()} + handleCancel={() => disableNotifyReminderPopup()} + > + + +
+
+
+ +
+ +
+ + {isChatVisible && isMobile && ( + + {/*
*/} +
+ )} + + - )} - - - - - - -
- {!isMobile &&
} + + + + +
-
- {isChatVisible && !isMobile && } - + {isChatVisible && !isMobile && } + + {!isMobile &&
} +
); } diff --git a/web/components/ui/Footer/Footer.module.scss b/web/components/ui/Footer/Footer.module.scss index 569d4edff..8bcd086dd 100644 --- a/web/components/ui/Footer/Footer.module.scss +++ b/web/components/ui/Footer/Footer.module.scss @@ -1,7 +1,32 @@ .footer { - font-size: 0.85em; - font-weight: 500; - color: var(--theme-color-palette-1); - background-color: transparent; - padding: var(--content-padding); + display: flex; + justify-content: space-between; + flex-direction: row; + background-color: var(--theme-color-background-header); + width: 100%; + color: var(--theme-color-components-text-on-dark); + font-family: var(--theme-text-body-font-family); + + padding: 0.6em; + font-size: 0.8rem; + font-weight: 600; + opacity: 0.7; + border-top: 1px solid rgba(214, 211, 211, 0.5); + + @media (max-width: 768px) { + display: none; + } + + a { + color: var(--theme-text-secondary); + } + + .links { + display: flex; + justify-content: space-between; + flex-direction: row; + .item { + margin-left: 1.2em; + } + } } diff --git a/web/components/ui/Footer/Footer.tsx b/web/components/ui/Footer/Footer.tsx index 8927e02d2..01c08f613 100644 --- a/web/components/ui/Footer/Footer.tsx +++ b/web/components/ui/Footer/Footer.tsx @@ -1,8 +1,5 @@ -import { Layout } from 'antd'; import s from './Footer.module.scss'; -const { Footer } = Layout; - interface Props { version: string; } @@ -11,8 +8,27 @@ export default function FooterComponent(props: Props) { const { version } = props; return ( - +
+
+ Powered by {version} +
+ +
); }