Skip to content

Commit

Permalink
Merge pull request barryclark#10 from bobbyg603/fix-mobile-width
Browse files Browse the repository at this point in the history
fix: fix issue rendering full width on mobile
  • Loading branch information
1hanzla100 authored Jan 12, 2022
2 parents 9ca9fce + da59f1f commit 8cb9b6e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pages/_app.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import 'bootstrap/dist/css/bootstrap.min.css';
import "../styles/vendor/nucleo/css/nucleo.css";
import "../styles/vendor/font-awesome/css/font-awesome.min.css";
import "../styles/argon-design-system-react.css";
import "../styles/styles.css";
import "../styles/vendor/font-awesome/css/font-awesome.min.css";
import "../styles/vendor/nucleo/css/nucleo.css";

function MyApp({ Component, pageProps }) {
return <Component {...pageProps} />;
Expand Down
3 changes: 3 additions & 0 deletions styles/styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
body>div:first-child {
overflow-x: hidden;
}

0 comments on commit 8cb9b6e

Please sign in to comment.