I have set up a div for some buttons in a sidebar layout. However, I am unsure how to stack them vertically...
Initially, I tried using two divs stacked on top of each other, but this did not work well with different screen sizes as the buttons were not aligned properly...
Any suggestions on how to achieve this?
#sideBar {
position: fixed;
right: -29px;
top: 52vh;
display: inline-grid;
}
#feedbackBtn {
z-index: 1000;
transform: rotate(270deg);
}
#helpBtn {
z-index: 1000;
}
<div id="sideBar">
<Button id="feedbackBtn" onClick={onButtonClick} design="Emphasized">
Feedback
</Button>
<Button id="helpBtn" icon="sys-help" onClick={onButtonClickHelp} design="Default"></Button>
</div>