From 0b52fd155029a2b0052336ede0986d5e7c7094f4 Mon Sep 17 00:00:00 2001 From: Dominic Masters Date: Tue, 23 Oct 2018 17:34:36 +1100 Subject: [PATCH] Update README.md, fix x-overflow (temporarily) --- README.md | 13 ++++++++++--- public/styles/components/_app.scss | 4 +++- 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 96c4a12..0f0782d 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,5 @@ -

domsPlace();

+ +

domsPlace();

My personal website, written in Javascript, HTML, CSS using Node, React, SCSS, Webpack and Babel. @@ -7,9 +8,15 @@ Yet another redesign after many, the site is permanently stuck in limbo as I don ## Roadmap Plans to add are: - - Favicon + - ~~Favicon~~ - Short Blog Page - Featured Video (Code is ready, video needs to be made) - More Social integration and show off my social pages - Faster loading (SVG Backgrounds are quite large) - - Async Image/Video loading for content (no point just yet) \ No newline at end of file + - ~~Responsive Image Loading~~ + - Async Image/Video loading for content (no point just yet) + - ~~Async page offsetting,~~ as well as proper loading templates + - Improved SEO + - Reduce Divitis + - Restore previously removed page transitions + - Convert some of the SVGs into responsive PNGs diff --git a/public/styles/components/_app.scss b/public/styles/components/_app.scss index 7346580..30787d6 100644 --- a/public/styles/components/_app.scss +++ b/public/styles/components/_app.scss @@ -8,4 +8,6 @@ * Version: * 1.0.0 - 2018/05/03 */ -.c-app {} +.c-app { + overflow-x: hidden;//Temporary until I find time to find the overflowing element +}