From a29055dc18f19826ff4af71fdf377cca9fdf0ee2 Mon Sep 17 00:00:00 2001 From: yflory Date: Wed, 13 May 2020 11:36:52 +0200 Subject: [PATCH] Center middle part of the 'bottom' toolbar --- customize.dist/src/less2/include/toolbar.less | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/customize.dist/src/less2/include/toolbar.less b/customize.dist/src/less2/include/toolbar.less index 3256394f9..987125ff8 100644 --- a/customize.dist/src/less2/include/toolbar.less +++ b/customize.dist/src/less2/include/toolbar.less @@ -1033,14 +1033,20 @@ color: var(--toolbar-bg-color); .cp-toolbar-bottom-left { display: flex; + flex-basis: 33.33%; order: 1; } .cp-toolbar-bottom-mid { + display: flex; + flex-basis: 33.33%; + justify-content: center; order: 2; } .cp-toolbar-bottom-right { order: 3; display: flex; + flex-basis: 33.33%; + justify-content: end; #cp-toolbar-chat-drawer-open { order: 0; } #cp-toolbar-userlist-drawer-open { order: 1; } }