mirror of
https://github.com/signalapp/Signal-Desktop.git
synced 2026-05-28 10:35:59 +01:00
efb7c6725c
Co-authored-by: Jamie <113370520+jamiebuilds-signal@users.noreply.github.com>
17 lines
304 B
CSS
17 lines
304 B
CSS
/**
|
|
* Copyright 2026 Signal Messenger, LLC
|
|
* SPDX-License-Identifier: AGPL-3.0-only
|
|
*/
|
|
|
|
@custom-variant container-scrollable {
|
|
@container not scroll-state(scrollable: none) {
|
|
@slot;
|
|
}
|
|
}
|
|
|
|
@custom-variant container-not-scrollable {
|
|
@container scroll-state(scrollable: none) {
|
|
@slot;
|
|
}
|
|
}
|