mirror of
https://github.com/Sonny93/my-links.git
synced 2025-12-09 07:03:25 +00:00
25 lines
496 B
CSS
25 lines
496 B
CSS
.footer {
|
|
width: 100%;
|
|
margin-top: rem(40px);
|
|
border-top: rem(1px) solid
|
|
light-dark(var(--mantine-color-gray-2), var(--mantine-color-dark-5));
|
|
}
|
|
|
|
.inner {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
padding-top: var(--mantine-spacing-md);
|
|
padding-bottom: var(--mantine-spacing-md);
|
|
|
|
@media (max-width: $mantine-breakpoint-xs) {
|
|
flex-direction: column;
|
|
}
|
|
}
|
|
|
|
.links {
|
|
@media (max-width: $mantine-breakpoint-xs) {
|
|
margin-top: var(--mantine-spacing-md);
|
|
}
|
|
}
|