Skip to content

Commit

Permalink
CSS Fixes
Browse files Browse the repository at this point in the history
Fixed issue 19 whitep4nth3r#19

Updated font family variables. Main doesn’t exist
  • Loading branch information
Taylor Drayson authored and Taylor Drayson committed Feb 11, 2022
1 parent 65c7da9 commit 74ff2f4
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 6 deletions.
2 changes: 1 addition & 1 deletion styles/Backstage.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
line-height: 1.8;
margin-bottom: 2rem;
font-weight: var(--font-weight-normal);
font-family: var(--font-family-main);
font-family: var(--font-family-body);
color: var(--color-fg);
word-break: break-word;
text-align: center;
Expand Down
3 changes: 3 additions & 0 deletions styles/Layout.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,9 @@
.layout__wrapper {
grid-area: wrapper;
background-color: var(--color-bg);
display: flex;
flex-direction: column;
justify-content: space-between;
}

.layout__main {
Expand Down
2 changes: 1 addition & 1 deletion styles/StreamerAvatar.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
margin-top: 2rem;
margin-bottom: 3rem;
font-weight: var(--font-weight-normal);
font-family: var(--font-family-main);
font-family: var(--font-family-body);
color: var(--color-fg);
word-break: break-word;
}
Expand Down
8 changes: 4 additions & 4 deletions styles/Typography.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
margin-bottom: 3rem;
letter-spacing: 1px;
font-weight: var(--font-weight-bold);
font-family: var(--font-family-main);
font-family: var(--font-family-heading);
color: var(--yellow);
text-transform: uppercase;
text-shadow: 3px 3px var(--red);
Expand All @@ -16,7 +16,7 @@
line-height: 1.5;
margin-bottom: 3rem;
font-weight: var(--font-weight-bold);
font-family: var(--font-family-main);
font-family: var(--font-family-heading);
color: var(--yellow);
}

Expand All @@ -25,7 +25,7 @@
line-height: 1.3;
margin-bottom: 3rem;
font-weight: var(--font-weight-bold);
font-family: var(--font-family-main);
font-family: var(--font-family-heading);
color: var(--white);
padding-bottom: 1rem;
border-bottom: 0.25rem solid var(--red);
Expand All @@ -36,7 +36,7 @@
line-height: 1.8;
margin-bottom: 2rem;
font-weight: var(--font-weight-normal);
font-family: var(--font-family-main);
font-family: var(--font-family-body);
color: var(--color-fg);
word-break: break-word;
}
Expand Down
5 changes: 5 additions & 0 deletions styles/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ body {
background-repeat: repeat;
background-size: 9rem;
min-height: 100vh;
display: flex;

color: var(--color-fg);
}
Expand All @@ -49,3 +50,7 @@ body {
box-sizing: border-box;
margin: 0;
}

#__next{
display: flex;
}

0 comments on commit 74ff2f4

Please sign in to comment.