Skip to content

Commit

Permalink
Minor CSS fixes for footer and no horizontal overflow
Browse files Browse the repository at this point in the history
  • Loading branch information
MichaelKohler committed Oct 19, 2021
1 parent d4ecdb0 commit 4433f14
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions public/style.css
Expand Up @@ -14,7 +14,7 @@ body {
margin: 0px;
height: 100vh;
color: #000000;
background-color: #fff;
background-color: #000;
}

h1 {
Expand All @@ -33,7 +33,7 @@ a:hover {
}

header {
width: 100vw;
width: 100%;
padding: 24px;
background-color: #000000;
text-align: center;
Expand All @@ -44,7 +44,9 @@ header img {
}

.container {
width: 100vw;
width: 100%;
background-color: #FFF;
padding-top: 20px;
}

.form-container {
Expand Down Expand Up @@ -168,12 +170,16 @@ button:hover,
color: #fff;
}

.campaign-over {
margin-bottom: 300px;
}

footer {
font-size: 14px;
background-color: #000;
color: #fff;
padding: 50px 20px 30px;
width: 100vw;
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
Expand Down

0 comments on commit 4433f14

Please sign in to comment.