fix: footer width create empty space on right

This commit is contained in:
Ravinou 2023-09-03 14:23:09 +02:00
parent 38b2d25f87
commit 5ae03396e0
No known key found for this signature in database
GPG key ID: EEEE670C40F6A4D7

View file

@ -3,10 +3,14 @@
text-align: center; text-align: center;
position: absolute; position: absolute;
bottom: 0; bottom: 0;
width: calc(100% + 70px); width: 100%;
height: 50px; height: 50px;
} }
.footer p {
padding-left: 70px;
}
a.site { a.site {
color: #6d4aff; color: #6d4aff;
text-decoration: none; text-decoration: none;
@ -16,4 +20,7 @@ a.site {
.footer { .footer {
width: 100%; width: 100%;
} }
.footer p {
padding-left: 0;
}
} }