You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The entire Schedule page has a giant flex-box container using flex-direction: row, where the child containers are the calendar, and the sidebar. This means that in order to use scrollbars on the sidebar, position: absolute must be used. If we changed flex-direction to column, we could use the calendar's height for the sidebar.
This would allow relative positioning, meaning better responsiveness.
This would also require a large Styling rework.
The text was updated successfully, but these errors were encountered:
The entire Schedule page has a giant
flex-box
container usingflex-direction: row
, where the child containers are the calendar, and the sidebar. This means that in order to use scrollbars on the sidebar,position: absolute
must be used. If we changedflex-direction
tocolumn
, we could use the calendar's height for the sidebar.This would allow relative positioning, meaning better responsiveness.
This would also require a large Styling rework.
The text was updated successfully, but these errors were encountered: