Skip to content

Commit

Permalink
make homepage repeat horizontally to address large browser issues and…
Browse files Browse the repository at this point in the history
… fix footer dark/light issue (#2040)
  • Loading branch information
insectengine authored Jul 9, 2024
1 parent 52d9bfe commit 2f5fe09
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
8 changes: 8 additions & 0 deletions _sass/includes/redhat-footer.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,23 @@
grid-column: 5/9;
align-self: center;
justify-self: center;
color: $white;

i {
color: $white;
}

a {
color: $white;
font-size: .75rem;
font-weight: 200;
}

@media screen and (max-width: 1024px) {
grid-column: 1/5;
justify-self: left;
}

@media screen and (max-width: 480px) {
grid-column: 1/13;
justify-self: center;
Expand Down
3 changes: 2 additions & 1 deletion _sass/layouts/home.scss
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
.homepage {

background-image: url($baseurl + '/assets/images/bg-home-primary.png');
background-repeat: no-repeat;
background-repeat: repeat-x;

p {
margin: 2rem 0;
}
Expand Down
Binary file modified assets/images/bg-home-primary.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 2f5fe09

Please sign in to comment.