Fix the scrollbar in the community bar
Currently the scrollbar is always visible because the inner container is 5px bigger in height than the outer container. This is hereby fixed. Signed-off-by: Jonas Schürmann <jonasschuermann@aol.de>
This commit is contained in:
parent
9771ce1e04
commit
2d9fbcab70
1 changed files with 1 additions and 1 deletions
|
@ -65,7 +65,7 @@ limitations under the License.
|
|||
align-items: center;
|
||||
margin-top: 5px;
|
||||
|
||||
height: 100%;
|
||||
height: calc(100% - 5px);
|
||||
}
|
||||
.mx_TagPanel .mx_TagPanel_tagTileContainer > div {
|
||||
height: 40px;
|
||||
|
|
Loading…
Reference in a new issue