Last Improvements
This commit is contained in:
parent
dc768dd9d4
commit
c514530083
2 changed files with 14 additions and 1 deletions
|
@ -76,11 +76,11 @@ const servant_images = import.meta.glob<{ default: ImageMetadata }>(
|
||||||
color: white;
|
color: white;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
padding-left: 0.75rem;
|
padding-left: 0.75rem;
|
||||||
|
justify-content: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
.mobile > h2 {
|
.mobile > h2 {
|
||||||
margin: 0%;
|
margin: 0%;
|
||||||
margin-top: 0.5rem;
|
|
||||||
font-size: 1.25rem;
|
font-size: 1.25rem;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
|
@ -57,6 +57,13 @@ const { title, description } = Astro.props
|
||||||
line-height: 20px;
|
line-height: 20px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@supports (text-align-last: center) {
|
||||||
|
div h2 {
|
||||||
|
text-align: justify;
|
||||||
|
text-align-last: center;
|
||||||
|
}
|
||||||
|
}
|
||||||
@media (min-width: 512px) {
|
@media (min-width: 512px) {
|
||||||
div {
|
div {
|
||||||
row-gap: 1.5em;
|
row-gap: 1.5em;
|
||||||
|
@ -89,5 +96,11 @@ const { title, description } = Astro.props
|
||||||
div h2 {
|
div h2 {
|
||||||
text-align: left;
|
text-align: left;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@supports (text-align-last: center) {
|
||||||
|
div h2 {
|
||||||
|
text-align-last: initial;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|
Loading…
Reference in a new issue