Mobile “fold” tap targets are too small

Found CSS that makes it work

This is for fold toggle triangles (the @media line applies it to mobile devices only)

@media  (max-height: 1150px) {
svg.svg-icon.right-triangle  {
    width: 15px;  /* Increase the width */
    height: 15px;  /* Increase the height */
    /* fill: yellow;    */
}
}

This is for checkboxes

.is-mobile {
    --checkbox-size: 25px;
}