Fix search padding

pull/21833/head
Jorik Schellekens 2020-07-10 02:54:11 +01:00
parent f9e8487d5a
commit e4366632cf
1 changed files with 6 additions and 2 deletions

View File

@ -54,7 +54,10 @@ $tagPanelWidth: 70px; // only applies in this file, used for calculations
flex-direction: column;
.mx_LeftPanel2_userHeader {
padding: 12px 12px 20px; // 12px top, 12px sides, 20px bottom
/* 12px top, 12px sides, 20px bottom (using 13px bottom to account
* for internal whitespace in the breadcrumbs)
*/
padding: 12px 12px 13px;
// Create another flexbox column for the rows to stack within
display: flex;
@ -72,7 +75,8 @@ $tagPanelWidth: 70px; // only applies in this file, used for calculations
width: 100%;
overflow-y: hidden;
overflow-x: scroll;
margin-top: 8px;
margin-top: 20px;
padding-bottom: 2px;
}
}