Page here: https://redguard.com/blast-resistant-building/
How do I get the buttons to open below the group, instead of above?
I tried this to no avail:
/* FLIP BUTTONS */
.buttonizer .buttonizer-button-list {
display: flex;
flex-direction: column-reverse;
}
How do I set the button width/max-width and have it match the group width and how do you get the distance between each button to be zero?
I tried this and the width worked on the group but didn't for the sub-button.
/* MAIN BUTTON */
.buttonizer .buttonizer-button.buttonizer-head {
width: 60px !important;
height: 60px !important;
}
/* SUB BUTTONS */
.buttonizer .buttonizer-button-list .buttonizer-button {
width: 60px !important;
height: 60px !important;
position: relative !important;
bottom: auto !important;
}
See attachments for current results and desired results.