mirror of
https://github.com/vector-im/element-call.git
synced 2026-02-02 04:05:56 +00:00
28 lines
494 B
CSS
28 lines
494 B
CSS
/*
|
|
Copyright 2024 New Vector Ltd.
|
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
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;
|
|
}
|