mirror of https://github.com/vector-im/riot-web
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>pull/21833/head
parent
9771ce1e04
commit
2d9fbcab70
|
@ -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 New Issue