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
{{ message }}
This repository was archived by the owner on Sep 11, 2024. It is now read-only.
Copy file name to clipboardExpand all lines: res/css/structures/_MainSplit.scss
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -23,15 +23,15 @@ limitations under the License.
23
23
}
24
24
25
25
.mx_MainSplit > .mx_RightPanel_ResizeWrapper {
26
-
// no padding on the left. The spacing is taken care of by the main split content.
27
-
padding: 5px5px5px0px;
28
-
margin-left: 8px;
26
+
padding: $container-gap-width;
27
+
padding-left: calc($container-gap-width/2); // The resizer should be centered: only half of the gap-width is handled by the right panel. The other half by the RoomView.
29
28
height: calc(100vh-51px); // height of .mx_RoomHeader.light-panel
30
29
31
30
&:hover.mx_ResizeHandle_horizontal::before {
32
31
position: absolute;
33
32
top: 50%;
34
-
transform: translate(0, -50%);
33
+
left: 50%;
34
+
transform: translate(-50%, -50%);
35
35
36
36
height: 64px; // to match width of the ones on roomlist
0 commit comments