diff --git a/src/components/AboutPage/index.tsx b/src/components/AboutPage/index.tsx index 904a4f3da..1aad575ea 100644 --- a/src/components/AboutPage/index.tsx +++ b/src/components/AboutPage/index.tsx @@ -91,7 +91,7 @@ const AboutPage = (): JSX.Element => {

Future plans for Simularium

-

+

Create, modify, run, experiment, share, interoperate, & grow as a community

@@ -124,7 +124,7 @@ const AboutPage = (): JSX.Element => { engines that generated them for use in building an integrated, mechanistic understanding of human cells. We will also work with educators at all levels of science - teaching to integrate and test Simularium`'`s potential + teaching to integrate and test Simularium's potential for use in active learning classroom/lab/homework activities.

diff --git a/src/components/AboutPage/style.css b/src/components/AboutPage/style.css index c8a23fd6a..6bac08a9e 100644 --- a/src/components/AboutPage/style.css +++ b/src/components/AboutPage/style.css @@ -15,3 +15,6 @@ padding: 16px 16px 6px 16px; } +.header-spacing { + margin-bottom: 16px; +} \ No newline at end of file diff --git a/src/components/ContactPanel/index.tsx b/src/components/ContactPanel/index.tsx index 1b6aeb06a..6be58dabe 100644 --- a/src/components/ContactPanel/index.tsx +++ b/src/components/ContactPanel/index.tsx @@ -3,10 +3,16 @@ import React from "react"; import { CONTACT_FORM_URL } from "../../constants"; import ContentPagePanel from "../ContentPagePanel"; -const ContactPanel = (): JSX.Element => { +import styles from "./style.css"; + +interface ContactPanelProps { + isDark?: boolean; +} + +const ContactPanel = ({ isDark }: ContactPanelProps): JSX.Element => { return ( - -

Contact us

+ +

Contact us

We are collecting user feedback to improve this application. To find tutorials, seek technical support, report bugs or request diff --git a/src/components/ContactPanel/style.css b/src/components/ContactPanel/style.css new file mode 100644 index 000000000..12619f19c --- /dev/null +++ b/src/components/ContactPanel/style.css @@ -0,0 +1,3 @@ +.header-spacing { + margin-bottom: 16px; +} \ No newline at end of file diff --git a/src/components/ContentPage/index.tsx b/src/components/ContentPage/index.tsx index e39b6b42f..441218d7a 100644 --- a/src/components/ContentPage/index.tsx +++ b/src/components/ContentPage/index.tsx @@ -10,18 +10,20 @@ const { Content } = Layout; interface ContentPageProps { children: React.ReactNode; className?: string; + contactPanelIsDark?: boolean; } const ContentPage: React.FC = ({ children, className = "", + contactPanelIsDark = false, }) => { return ( <> {children} - +