remove extra left margin from vertical layout

This commit is contained in:
Jesse D. McDonald 2020-03-14 17:20:41 -05:00
parent 285dd656c3
commit 8bcd0ecff6
1 changed files with 12 additions and 8 deletions

View File

@ -22,13 +22,6 @@ button:disabled .silhouette {
flex-flow: row nowrap;
}
/*@media only screen and (max-width: 8in) {*/
@media only screen and (max-aspect-ratio: 4/3) {
#content {
flex-flow: column nowrap;
}
}
#cb_outer {
width: 100%;
max-width: calc(100vh - 4em);
@ -214,4 +207,15 @@ button:disabled .silhouette {
cursor: default;
}
/*@media only screen and (max-width: 8in) {*/
@media only screen and (max-aspect-ratio: 4/3) {
#content {
flex-flow: column nowrap;
}
#cb_control_container {
margin-left: 0;
}
}
/* vim: set expandtab sw=3 ts=8: */