We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 514e0fc commit 75cd42bCopy full SHA for 75cd42b
src/assets/styles/global.scss
@@ -1,7 +1,14 @@
1
html,
2
-body,
3
-#app {
+body {
4
height: 100%;
+ width: 100%;
5
+}
6
+
7
+#__next {
8
+ min-height: 100%;
9
+ display: grid;
10
+ grid-template-rows: auto 1fr auto;
11
+ grid-template-columns: 100%;
12
}
13
14
.is-clickable {
src/components/common/Layout.jsx
@@ -9,9 +9,7 @@ const Layout = ({ children }) => {
return (
<React.Fragment>
<NavBar />
- <div className="container" style={{ minHeight: "calc(80vh - 70px)" }}>
- {children}
- </div>
+ <div className="container">{children}</div>
15
<Footer />
16
</React.Fragment>
17
);
0 commit comments