2024-02-16 22:49:06 +01:00
|
|
|
#footer {
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column; /* Stack children vertically */
|
|
|
|
justify-content: center;
|
|
|
|
align-items: center;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.footer-center {
|
|
|
|
display: flex;
|
|
|
|
align-items: center; /* Center children horizontally */
|
|
|
|
flex-grow: 1;
|
2024-05-05 13:07:44 +02:00
|
|
|
flex-direction: column;
|
2024-02-16 22:49:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
.footer-powered-by {
|
|
|
|
margin-top: auto; /* Pushes the text to the bottom */
|
|
|
|
text-align: center; /* Centers the text inside the div */
|
|
|
|
width: 100%; /* Full width to center the text properly */
|
|
|
|
}
|
2024-05-05 13:07:44 +02:00
|
|
|
|
|
|
|
.footer-icon {
|
|
|
|
font-size: 2rem;
|
|
|
|
}
|