Files
nhgooi.nl/resources/assets/sass/components/_contact_box.scss
2024-03-20 12:31:55 +01:00

40 lines
638 B
SCSS
Vendored

@use "../abstracts/mixin" as *;
.contact_box {
position: relative;
padding: 15px 23px 15px 15px;
.logo-whatsapp {
position: absolute;
right: 0;
top: 0;
}
h2 {
font-family: Montserrat, serif;
font-size: 24px;
font-weight: 600;
line-height: 1.17;
color: #282828;
margin-top: 0;
padding-right: 60px;
}
p {
font-family: Nunito, serif;
font-size: 14px;
font-weight: 500;
line-height: 1.57;
color: #666;
}
.read_more {
@include read_more_link;
}
}
@media (max-width: 768px) and (min-width: 423px) {
.contact_box p {
width: CALC(100% - 81px);
}
}