Make collapsible always visible on large screen

This commit is contained in:
jazzdragon
2019-05-04 19:48:30 -07:00
parent 271330d2fc
commit a876f81f0a

View File

@@ -57,3 +57,13 @@
.collapsible-checkbox:checked + .lbl-toggle > ::before {
transform: rotate(90deg) translateX(-3px);
}
@media only screen and (min-width: 1025px) {
.lbl-toggle > ::before {
display: none;
}
.collapsible-content {
max-height: 350px;
}
}