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