fix align
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2026-03-31 23:05:01 +08:00
parent a87c6faa1e
commit da63acccec

View File

@ -92,8 +92,14 @@ try {
</FullLayoutV1> </FullLayoutV1>
<style> <style>
:global(html) {
scroll-snap-type: y proximity;
scroll-behavior: smooth;
}
.slide { .slide {
min-height: 100dvh; scroll-snap-align: start;
height: 100dvh;
display: flex; display: flex;
align-items: center; align-items: center;
justify-content: center; justify-content: center;
@ -158,8 +164,12 @@ try {
width: 11em; width: 11em;
& > p { & > p {
margin: 0;
width: max-content; width: max-content;
margin-inline: auto;
@media (min-width: 768px) {
margin-inline: 0;
}
} }
} }