27 lines
609 B
CSS
27 lines
609 B
CSS
.footer {
|
|
background: #32495f;
|
|
border-top: 1px solid light-dark(var(--mantine-color-gray-3), var(--mantine-color-dark-4));
|
|
}
|
|
|
|
.inner {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding: var(--mantine-spacing-xs) var(--mantine-spacing-md);
|
|
|
|
@media (max-width: $mantine-breakpoint-xs) {
|
|
flex-direction: column;
|
|
}
|
|
}
|
|
|
|
.link {
|
|
color: light-dark(var(--mantine-color-gray-7), var(--mantine-color-dark-0));
|
|
@media (max-width: $mantine-breakpoint-xs) {
|
|
margin-top: var(--mantine-spacing-md);
|
|
}
|
|
}
|
|
|
|
.link:hover {
|
|
color: light-dark(var(--mantine-color-white));
|
|
}
|