Fix css on mobile
continuous-integration/drone/push Build is passing Details

This commit is contained in:
Michel Roux 2022-09-09 10:42:09 +00:00
parent 506ff65fc5
commit 419461803f
1 changed files with 4 additions and 2 deletions

View File

@ -144,7 +144,6 @@ footer ul li:last-child {
h1 {
font-size: 20px;
color: white;
}
h2 {
@ -164,7 +163,6 @@ hr {
#buttons {
background-color: #2f3136;
padding: 16px;
text-align: right;
border-radius: 0 0 5px 5px;
display: flex;
justify-content: flex-end;
@ -183,6 +181,10 @@ hr {
}
@media only screen and (max-width : 320px) {
body {
justify-content: flex-start;
}
footer ul li {
display: block;
}