Footer UI improvements

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel 2021-06-10 10:33:06 +02:00
parent f58cc98e55
commit dd8096507b
No known key found for this signature in database
GPG Key ID: A061B9DDE0CA0773
1 changed files with 9 additions and 4 deletions

View File

@ -115,12 +115,13 @@ footer.footer {
flex: 1; flex: 1;
max-width: 40rem; max-width: 40rem;
@include mobile { @include mobile {
max-width: 400px; max-width: 100%;
} }
} }
div.content { div.content {
flex: 1; flex: 1;
padding-top: 10px;
} }
ul { ul {
@ -131,6 +132,7 @@ footer.footer {
li { li {
display: inline-flex; display: inline-flex;
margin: auto 5px; margin: auto 5px;
padding: 2px 0;
a { a {
font-size: 1.1rem; font-size: 1.1rem;
} }
@ -143,9 +145,12 @@ footer.footer {
text-decoration-color: $secondary; text-decoration-color: $secondary;
} }
::v-deep span.select select { ::v-deep span.select {
background: $background-color; select,
color: $white; option {
background: $background-color;
color: $white;
}
} }
} }
</style> </style>