Files
Desktop/stylesheets/tailwind-plugins/container-scroll-state.css
2026-03-04 11:22:47 -08:00

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;
}
}