Closed dimayakovlev closed 2 years ago
Now gap between #maincontent
and #sidebar
is: 960px - 690px - 225px = 45px. Want to reduce it to 20px:
.bodycontent {
display: flex;
flex-flow: row nowrap;
justify-content: space-between;
align-items: flex-start;
gap: 20px;
}
#maincontent {
/* width: 690px; */
text-align: left;
flex: 1;
}
#sidebar {
width: 225px;
position: sticky;
top: 20px;
}
Need to make #sidebar
wider?
Administrative panel is usable on devices with screens width more than 960px + scrollbar + browser borders.
Have no plans yet to adapt Administrative panel for mobiles but want to make it wider on desktops.