Fix search padding
parent
f9e8487d5a
commit
e4366632cf
|
@ -54,7 +54,10 @@ $tagPanelWidth: 70px; // only applies in this file, used for calculations
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
|
||||||
.mx_LeftPanel2_userHeader {
|
.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
|
// Create another flexbox column for the rows to stack within
|
||||||
display: flex;
|
display: flex;
|
||||||
|
@ -72,7 +75,8 @@ $tagPanelWidth: 70px; // only applies in this file, used for calculations
|
||||||
width: 100%;
|
width: 100%;
|
||||||
overflow-y: hidden;
|
overflow-y: hidden;
|
||||||
overflow-x: scroll;
|
overflow-x: scroll;
|
||||||
margin-top: 8px;
|
margin-top: 20px;
|
||||||
|
padding-bottom: 2px;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue