File size: 385 Bytes
1e92f2d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | .powered-by-wp-footer {
position: absolute;
bottom: 0;
padding: 30px 0;
width: 100%;
.powered-by-wp-footer__info {
display: flex;
align-items: center;
justify-content: center;
gap: 8px;
font-size: 0.875rem;
color: var(--color-text);
}
.powered-by-wp-footer__logo {
fill: #000;
}
@media screen and (max-width: 782px) {
position: static;
width: unset;
}
}
|