Files
Desktop/stylesheets/tailwind-plugins/container-scroll-state.css
2026-02-27 14:12:13 -06: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;
}
}