From 52eae544f086993e8b807356b7d15096cb67f066 Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Sun, 9 Jun 2019 20:49:00 +1000 Subject: [PATCH] Rebuilt navigation system. --- src/public/app/domsPlaceApp.tsx | 4 +- src/public/assets/icons/icon-close.svg | 3 + src/public/assets/icons/icon-hamburger.svg | 4 +- src/public/components/layout/footer/index.tsx | 4 +- .../components/layout/footer/styles.scss | 56 ++++----- .../layout/header/hamburger/index.tsx | 112 ++++++++++++++++++ .../layout/header/hamburger/styles.scss | 71 +++++++++++ src/public/components/layout/header/index.tsx | 60 +++++----- .../components/layout/header/nav/index.tsx | 61 ++++++++++ .../components/layout/header/nav/styles.scss | 55 +++++++++ .../components/layout/header/styles.scss | 104 +++++----------- src/public/components/layout/layout/index.tsx | 38 +++--- .../components/layout/layout/styles.scss | 21 +++- src/public/components/page/styles.scss | 6 +- src/public/pages/home/index.tsx | 11 +- src/public/styles/settings/z.scss | 1 + yarn.lock | 97 +++++++++------ 17 files changed, 497 insertions(+), 211 deletions(-) create mode 100644 src/public/assets/icons/icon-close.svg create mode 100644 src/public/components/layout/header/hamburger/index.tsx create mode 100644 src/public/components/layout/header/hamburger/styles.scss create mode 100644 src/public/components/layout/header/nav/index.tsx create mode 100644 src/public/components/layout/header/nav/styles.scss diff --git a/src/public/app/domsPlaceApp.tsx b/src/public/app/domsPlaceApp.tsx index 1625f28..a25d568 100644 --- a/src/public/app/domsPlaceApp.tsx +++ b/src/public/app/domsPlaceApp.tsx @@ -30,7 +30,7 @@ import { domsPlaceState } from './../state/'; import { domsPlaceActions } from './../actions/'; import { domsPlaceReducer } from './../reducer/'; -import { Layout } from './../components/layout/layout'; +import { LayoutComponent } from './../components/layout/layout'; export class domsPlaceApp extends App { constructor() { @@ -41,7 +41,7 @@ export class domsPlaceApp extends App { getComponent() { return ( - + ); } } diff --git a/src/public/assets/icons/icon-close.svg b/src/public/assets/icons/icon-close.svg new file mode 100644 index 0000000..2520ab7 --- /dev/null +++ b/src/public/assets/icons/icon-close.svg @@ -0,0 +1,3 @@ + + + diff --git a/src/public/assets/icons/icon-hamburger.svg b/src/public/assets/icons/icon-hamburger.svg index 0955bc0..beeef83 100644 --- a/src/public/assets/icons/icon-hamburger.svg +++ b/src/public/assets/icons/icon-hamburger.svg @@ -1 +1,3 @@ - + + + diff --git a/src/public/components/layout/footer/index.tsx b/src/public/components/layout/footer/index.tsx index 9ede43e..da9626b 100644 --- a/src/public/components/layout/footer/index.tsx +++ b/src/public/components/layout/footer/index.tsx @@ -59,12 +59,12 @@ export class Footer extends React.Component { render() { return (