File: /home/lesanew/anestetues2/web/app/themes/anes-tetues/resources/css/components/_columns.scss
@use '../utilities';
.columns {
.column-img {
margin-bottom: utilities.space(4);
text-align: center;
display: flex;
align-items: center;
justify-content: center;
img {
width: 100%;
max-width: 50rem;
}
}
.text {
p {
margin-bottom: utilities.space(2);
&:last-child {
margin-bottom: 0;
}
}
}
.button-container {
p {
text-align: center;
margin-bottom: utilities.space(2);
&:last-child {
margin-bottom: 0;
}
}
}
}
@media screen and (width >= 768px) {
.columns {
.button-container {
display: flex;
gap: 2rem;
p {
text-align: center;
margin-bottom: 0;
}
}
}
}
@media screen and (width >= 1280px) {
.columns {
display: flex;
justify-content: space-between;
align-items: center;
.column-img {
margin-bottom: 0;
width: calc(50% - 8rem);
}
.column-content {
width: calc(50% - 8rem);
}
&.img-right {
flex-direction: row-reverse;
}
}
}