Fix spacing

This commit is contained in:
Jeremy Thomas 2024-03-21 18:16:52 +00:00
parent b0fbd0a977
commit beddf96613
4 changed files with 23 additions and 8 deletions

View File

@ -26,16 +26,22 @@
margin-left: 0; margin-left: 0;
} }
.bd-hero-title {
max-width: 80%;
}
.bd-hero-prints { .bd-hero-prints {
justify-content: flex-start; justify-content: flex-start;
} }
} }
} }
@media screen and (min-width: 1000px) {
.bd-hero.is-docs {
flex-wrap: nowrap;
.bd-hero-title {
max-width: 80%;
}
}
}
@media screen and (min-width: 1200px) { @media screen and (min-width: 1200px) {
.bd-hero.is-docs { .bd-hero.is-docs {
flex-wrap: nowrap; flex-wrap: nowrap;

View File

@ -5,6 +5,8 @@
display: grid; display: grid;
grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr)); grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
position: relative; position: relative;
margin: 0 -1rem;
justify-content: center;
} }
.bd-ami { .bd-ami {

View File

@ -34429,6 +34429,8 @@ has-background-moon.is-hoverable:active {
display: grid; display: grid;
grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr)); grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
position: relative; position: relative;
margin: 0 -1rem;
justify-content: center;
} }
.bd-ami { .bd-ami {
@ -36302,13 +36304,18 @@ has-background-moon.is-hoverable:active {
.bd-hero.is-docs .bd-hr { .bd-hero.is-docs .bd-hr {
margin-left: 0; margin-left: 0;
} }
.bd-hero.is-docs .bd-hero-title {
max-width: 80%;
}
.bd-hero.is-docs .bd-hero-prints { .bd-hero.is-docs .bd-hero-prints {
justify-content: flex-start; justify-content: flex-start;
} }
@media screen and (min-width: 1000px) {
.bd-hero.is-docs {
flex-wrap: nowrap;
}
.bd-hero.is-docs .bd-hero-title {
max-width: 80%;
}
}
@media screen and (min-width: 1200px) { @media screen and (min-width: 1200px) {
.bd-hero.is-docs { .bd-hero.is-docs {
flex-wrap: nowrap; flex-wrap: nowrap;

File diff suppressed because one or more lines are too long