/*
* SPDX-FileCopyrightText: 2024 Shota FUJI <pockawoooh@gmail.com>
* SPDX-License-Identifier: AGPL-3.0-only
*/
.cell {
white-space: nowrap;
}
.sticky {
position: sticky;
background-color: var(--color-background);
z-index: 10;
}
.columnHeader {
composes: cell sticky;
top: 0;
}
.rowHeader {
composes: cell sticky;
left: 0;
}
.rowColumnHeader {
composes: columnHeader rowHeader;
z-index: 11;
}