Fix sorting behavior layout independent

The respective css styling is moved out of the case distinction between
grid and flexbox layout to be indpendent of the layout choice.
This commit is contained in:
Liane Hampe
2021-01-10 15:26:59 +01:00
parent bf14f9fa3c
commit b823dda2d9
2 changed files with 2 additions and 2 deletions

View File

@@ -28,6 +28,7 @@
#content {
padding: $padding-side;
overflow-x: auto; // needed for drag & drop of enumerations
@if $css-grid-layout {
grid-area: content;
@@ -35,7 +36,6 @@
$side-space: $sidebar-width + $padding-side * 2;
flex: 1 1 auto;
width: calc(100% - #{$side-space});
overflow-x: auto; // needed for drag & drop of enumerations
} @else {
overflow: hidden;
}

File diff suppressed because one or more lines are too long