Fix homepage overflow

This commit is contained in:
Jeremy Thomas 2024-03-21 18:10:03 +00:00
parent bbcab3aec5
commit 85f813a621
3 changed files with 5 additions and 1 deletions

View File

@ -19,6 +19,7 @@
gap: var(--spacing); gap: var(--spacing);
align-items: stretch; align-items: stretch;
z-index: 1; z-index: 1;
overflow: hidden;
.bd-tw { .bd-tw {
margin-left: auto; margin-left: auto;
@ -109,6 +110,7 @@
display: flex; display: flex;
gap: 3rem; gap: 3rem;
justify-content: center; justify-content: center;
overflow: auto;
> * { > * {
flex-basis: auto; flex-basis: auto;

View File

@ -35082,6 +35082,7 @@ has-background-moon.is-hoverable:active {
gap: var(--spacing); gap: var(--spacing);
align-items: stretch; align-items: stretch;
z-index: 1; z-index: 1;
overflow: hidden;
} }
.bd-home-section .bd-tw { .bd-home-section .bd-tw {
margin-left: auto; margin-left: auto;
@ -35160,6 +35161,7 @@ has-background-moon.is-hoverable:active {
display: flex; display: flex;
gap: 3rem; gap: 3rem;
justify-content: center; justify-content: center;
overflow: auto;
} }
.bd-home-theme-preview > * { .bd-home-theme-preview > * {
flex-basis: auto; flex-basis: auto;

File diff suppressed because one or more lines are too long