mirror of
https://github.com/vector-im/element-call.git
synced 2026-02-08 04:19:11 +00:00
This probably should have been part of https://github.com/element-hq/element-call/pull/2984
28 lines
527 B
CSS
28 lines
527 B
CSS
/*
|
|
Copyright 2024 New Vector Ltd.
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only OR LicenseRef-Element-Commercial
|
|
Please see LICENSE in the repository root for full details.
|
|
*/
|
|
|
|
.tabContainer {
|
|
min-height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.tabList {
|
|
overflow-y: auto;
|
|
max-width: 100%;
|
|
|
|
/*no scrollbars*/
|
|
scrollbar-width: none; /* Firefox */
|
|
-ms-overflow-style: none; /* IE 10+ */
|
|
}
|
|
|
|
.tabList::-webkit-scrollbar {
|
|
/*no scrollbars*/
|
|
background: transparent; /* Chrome/Safari/Webkit */
|
|
width: 0px;
|
|
}
|