Skip to content

Commit

Permalink
Fixed positioning of body to remove scrolling and bottom whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
p0wen committed Sep 29, 2020
1 parent 82f4ce7 commit fcba498
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions assets/css/style.css
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
/* Main Page */

.appview {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100vh;
z-index: -1;
}
.app {
background-position: center;
background-repeat: no-repeat;
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
<title>Zen Garden</title>
</head>

<body>
<body class="appview">
<div class="app container-fluid" id="myDiv">
<div class="row toolbar greyfilter">
<div class="col-8 appname">
Expand Down

0 comments on commit fcba498

Please sign in to comment.