Minor CSS fixe

This commit is contained in:
fedyna-k
2025-01-15 23:04:49 +01:00
parent 8dba8ca3d7
commit 0092ae6c3a
2 changed files with 14 additions and 2 deletions
+7 -2
View File
@@ -6,7 +6,12 @@
} }
.app-card { .app-card {
text-align: center; display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 10em;
height: 10em;
padding: 1em; padding: 1em;
border-radius: 0.5em; border-radius: 0.5em;
font-weight: 700; font-weight: 700;
@@ -46,5 +51,5 @@
} }
.app-card > span { .app-card > span {
font-size: 4em; font-size: 6em;
} }
+7
View File
@@ -48,3 +48,10 @@
transform: scaleY(1); transform: scaleY(1);
transform-origin: top; transform-origin: top;
} }
@media screen and (max-width: 1024px) {
#app {
grid-template-rows: auto 1fr;
grid-template-columns: none;
}
}