Landing/src/components/contacts/contacts.style.scss
katherineus 6568fcfce0 test
2022-04-20 15:46:53 +03:00

31 lines
542 B
SCSS

@use "../../assets/stylesheets/abstracts/mixins" as *;
// @use "../../assets/stylesheets/abstracts/variables";
.contacts {
display: flex;
flex-direction: row;
justify-content: space-between;
padding-bottom: 100px;
// padding-top: 54px;
border-bottom: 1px solid #665469;
div {
display: flex;
flex-direction: column;
align-items: center;
width: 150px;
a {
margin-bottom: 16px;
white-space: nowrap;
}
}
@include for-mobile {
flex-wrap: wrap;
div {
width: 45%;
}
}
}