Files
ontvlambaar/src/app/footer/footer.component.scss
Arne Vlaeminck 4090e5bffa
All checks were successful
Copy Files to Samba Share dev / Copy Files (push) Successful in 23s
Added feedback
2024-11-07 17:12:50 +01:00

50 lines
671 B
SCSS

@import "../../vars.scss";
:host {
display: flex;
padding: 2rem 0;
justify-content: space-between;
}
.contact {
width: 30%;
display: flex;
flex-direction: column;
.naam {
font-size: 1.5rem;
font-weight: bold;
text-transform: uppercase;
word-spacing: 0.7rem;
margin-bottom: 0.5rem;
}
.btw {
margin-top: 1.5rem;
}
a {
text-decoration: none;
color: var(--text-color);
padding: 0.3rem 0;
}
}
img {
max-width: 60%;
}
@media only screen and (max-width: $small-screen) {
:host {
flex-direction: column;
}
.contact {
width: 100%;
margin-bottom: 2rem;
}
img {
max-width: 100%;;
}
}