22 lines
313 B
CSS
22 lines
313 B
CSS
.footer {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
font-size: var(--font-size-small);
|
|
min-height: 100px;
|
|
}
|
|
|
|
.footer .center button {
|
|
margin-left: 10px;
|
|
}
|
|
|
|
.footer a {
|
|
text-decoration: none;
|
|
}
|
|
|
|
.center {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|