Files
teknolojirehberleri.xyz/styles/components/footer.scss
T
2021-10-06 10:24:40 +03:00

37 lines
527 B
SCSS

.footer {
display: flex;
justify-content: center;
background-color: var(--color-grey);
padding: 1.6rem;
&_text {
display: flex;
flex-direction: column;
text-align: center;
&-main {
font-size: 2rem;
}
&-secondary {
font-size: 1.6rem;
a {
color: var(--color-primary);
margin-right: 0.5rem;
}
}
@include media("<smaller") {
&-main {
font-size: 1.7rem;
}
&-secondary {
font-size: 1.3rem;
}
}
}
}