fix: Enhance splash screen layout with responsive design for stack elements (#2159)

Co-authored-by: Satyapriya Bai <v-satybai@microsoft.com>
This commit is contained in:
SATYA SB
2025-06-04 10:29:45 +05:30
committed by GitHub
parent c6eda097fc
commit 372ac6921f
2 changed files with 22 additions and 3 deletions

View File

@@ -30,6 +30,21 @@
margin: 0px auto;
text-align: center;
}
.splashStackContainer {
.splashStackRow {
display: flex;
gap: 0 16px;
@media (max-width: 768px) {
flex-direction: column;
gap: 16px 0;
}
}
@media (max-width: 768px) {
width: 85% !important;
}
}
.mainButtonsContainer {
.flex-display();