fix: handle responsive issues on minuscule screens

This commit is contained in:
Cyril MARPAUD
2023-03-12 14:33:09 +01:00
parent 1de6a4a3bd
commit 0bd226b051

View File

@ -37,6 +37,8 @@ body {
} }
#splash { #splash {
max-width: 100vw;
overflow: hidden;
color: white; color: white;
text-align: center; text-align: center;
margin: auto; margin: auto;
@ -138,10 +140,12 @@ body {
} }
.card { .card {
overflow: auto;
margin: auto; margin: auto;
padding: 1.5em; padding: 1.5em;
min-width: 30%; min-width: 30vw;
max-width: 60%; max-width: 60vw;
max-height: 75vh;
color: white; color: white;
text-align: justify; text-align: justify;
@ -188,11 +192,11 @@ body {
} }
.columns { .columns {
overflow: auto;
display: flex; display: flex;
flex-direction: row; flex-direction: row;
justify-content: space-around; justify-content: space-between;
align-items: center; align-items: center;
align-content: space-around;
} }
.columns div { .columns div {
@ -209,8 +213,9 @@ body {
} }
.list { .list {
overflow: auto;
display: flex; display: flex;
justify-content: center; justify-content: space-between;
align-items: center; align-items: center;
margin-bottom: 3%; margin-bottom: 3%;
} }