Files
ontvlambaar/src/app/footer/footer.component.scss
T
Arne f17cda05b8
Copy Files to Samba Share dev / Copy Files (push) Has been cancelled
Removed ui/ux and websites + upgrade to v22
2026-06-17 14:08:32 +02:00

51 lines
690 B
SCSS

@use "../../vars" as *;
: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: 500;
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;
font-size: 1.5rem;
}
img {
max-width: 100%;;
}
}