2018-06-09 02:23:11 +02:00
|
|
|
.vertical-split {
|
|
|
|
flex : 1 0 auto;
|
|
|
|
display : flex;
|
|
|
|
flex-direction : column;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items : center;
|
|
|
|
};
|
2018-10-11 22:36:16 +02:00
|
|
|
|
2018-10-14 20:42:47 +02:00
|
|
|
.collapse-content.closed{
|
2018-10-11 22:36:16 +02:00
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.collapse-button {
|
|
|
|
outline: none;
|
|
|
|
background: none;
|
|
|
|
border: none;
|
|
|
|
display: block;
|
|
|
|
margin: 15px auto 0;
|
|
|
|
width: 24px;
|
|
|
|
height: 24px;
|
2018-10-22 21:51:27 +02:00
|
|
|
padding: 0;
|
2018-10-11 22:36:16 +02:00
|
|
|
svg {
|
|
|
|
stroke: $brand-color;
|
2018-10-22 00:38:04 +02:00
|
|
|
&.plus-icon {
|
|
|
|
transform: rotate(0);
|
|
|
|
transition: all 0.4s ease;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
.plus-icon {
|
|
|
|
transform: rotate(-180deg);
|
|
|
|
}
|
2018-10-11 22:36:16 +02:00
|
|
|
}
|
|
|
|
}
|