All checks were successful
Copy Files to Samba Share / Copy Files (push) Successful in 2m12s
42 lines
562 B
SCSS
42 lines
562 B
SCSS
|
|
@import '../../styles.scss';
|
|
|
|
.wrapper {
|
|
overflow: hidden;
|
|
background-color: $light;
|
|
border-radius: 0.5rem;
|
|
padding: 1rem;
|
|
}
|
|
|
|
.alternate {
|
|
background-color: $white;
|
|
}
|
|
|
|
.heading {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
h3 {
|
|
width: 80%;
|
|
margin: 0;
|
|
}
|
|
|
|
span {
|
|
font-size: 2rem;
|
|
}
|
|
|
|
.collapse {
|
|
padding-left: 3rem;
|
|
border-left: 2px solid $secondary-color;
|
|
max-height: 20rem;
|
|
transition: max-height 0.5s ease-in;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.collapsed {
|
|
max-height: 0rem;
|
|
overflow: hidden;
|
|
transition: max-height 0.5s ease-in;
|
|
}
|