33 lines
506 B
SCSS
33 lines
506 B
SCSS
.accordion-item {
|
|
border-bottom: $global-border-archive;
|
|
&:first-of-type {
|
|
max-height: 5rem;
|
|
.is-active{
|
|
max-height: 5rem;
|
|
padding:0;
|
|
}
|
|
.accordion-title::before{
|
|
content:'';
|
|
}
|
|
a {
|
|
color: black;
|
|
&:hover,&:active,&:focus{
|
|
color: black;
|
|
cursor: not-allowed;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
.accordion-title {
|
|
ul,ol {
|
|
list-style: none;
|
|
@include xy-grid;
|
|
}
|
|
li {
|
|
@include xy-cell(3);
|
|
display:inline;
|
|
text-align:left;
|
|
}
|
|
}
|
|
|