church-website/src/compositions/CollapsibleImageWithText/styles.module.scss
2024-12-11 12:07:55 +01:00

34 lines
No EOL
474 B
SCSS

@import "template.scss";
.more {
font-size: 18px;
color: $base-color;
cursor: pointer;
font-weight: bold;
display: inline-flex;
gap: 10px;
align-items: center;
}
.content {
margin: -50px 0;
transition: max-height 500ms ease-in;
max-height: 0;
overflow: hidden;
}
.endButton {
position: relative;
top: 75px;
text-align: center;
}
.endButton svg {
cursor: pointer;
}
@media screen and (max-width: 576px) {
.endButton {
top: 20px;
}
}