sigit.io/src/components/Footer/style.module.scss

50 lines
599 B
SCSS
Raw Normal View History

2024-07-29 12:12:01 +00:00
@import '../../styles/colors.scss';
.borderTop {
border-top: solid 1px rgba(0, 0, 0, 0.075);
}
.footer {
display: flex;
flex-direction: column;
align-items: center;
font-size: 14px;
}
2024-07-25 16:03:03 +00:00
.links {
font-weight: 500;
2024-07-29 12:12:01 +00:00
color: rgba(0, 0, 0, 0.5);
2024-07-25 16:03:03 +00:00
> a + a {
margin-left: 25px;
}
2024-07-25 16:03:03 +00:00
}
2024-07-25 16:03:03 +00:00
.nav {
2024-07-29 12:12:01 +00:00
color: rgba(0, 0, 0, 0.5);
a {
width: 100%;
}
}
.credits {
width: 100%;
text-align: center;
padding: 10px 0;
font-size: 12px;
color: rgba(0, 0, 0, 0.5);
font-weight: 500;
}
.logo {
width: 100%;
2024-07-29 12:12:01 +00:00
max-width: 300px;
> img {
width: 100%;
height: auto;
}
}