2023-01-03 16:58:38 +00:00
|
|
|
/*
|
2024-09-06 10:22:13 +02:00
|
|
|
Copyright 2024 New Vector Ltd.
|
2023-01-03 16:58:38 +00:00
|
|
|
|
2024-09-06 10:22:13 +02:00
|
|
|
SPDX-License-Identifier: AGPL-3.0-only
|
|
|
|
|
Please see LICENSE in the repository root for full details.
|
2023-01-03 16:58:38 +00:00
|
|
|
*/
|
|
|
|
|
|
2021-12-06 17:34:10 -08:00
|
|
|
.tabContainer {
|
2023-09-18 17:34:24 -04:00
|
|
|
min-height: 100%;
|
2021-12-06 17:34:10 -08:00
|
|
|
display: flex;
|
2022-01-21 15:43:03 -08:00
|
|
|
flex-direction: column;
|
2021-12-06 17:34:10 -08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.tabList {
|
2023-07-11 10:52:27 +02:00
|
|
|
overflow-y: auto;
|
2023-05-22 12:54:26 -04:00
|
|
|
max-width: 100%;
|
2021-12-06 17:34:10 -08:00
|
|
|
|
2024-08-28 08:44:39 -04:00
|
|
|
/*no scrollbars*/
|
|
|
|
|
scrollbar-width: none; /* Firefox */
|
|
|
|
|
-ms-overflow-style: none; /* IE 10+ */
|
2021-12-06 17:34:10 -08:00
|
|
|
}
|
|
|
|
|
|
2024-08-28 08:44:39 -04:00
|
|
|
.tabList::-webkit-scrollbar {
|
|
|
|
|
/*no scrollbars*/
|
|
|
|
|
background: transparent; /* Chrome/Safari/Webkit */
|
|
|
|
|
width: 0px;
|
2021-12-06 17:34:10 -08:00
|
|
|
}
|