feat(dees-tile): add configurable overscroll handling to tile content and use it in modals
This commit is contained in:
@@ -45,6 +45,9 @@ export class DeesTile extends DeesElement {
|
||||
@property({ type: String })
|
||||
accessor heading: string = '';
|
||||
|
||||
@property({ type: String, reflect: true })
|
||||
accessor overscroll: 'contain' | 'auto' | 'none' = 'auto';
|
||||
|
||||
@state()
|
||||
accessor hasFooter: boolean = false;
|
||||
|
||||
@@ -100,7 +103,14 @@ export class DeesTile extends DeesElement {
|
||||
border-radius: 8px;
|
||||
border-top: 1px solid var(--dees-color-border-subtle);
|
||||
border-bottom: 1px solid var(--dees-color-border-subtle);
|
||||
overflow: hidden;
|
||||
overflow-x: hidden;
|
||||
overflow-y: auto;
|
||||
scrollbar-width: thin;
|
||||
scrollbar-color: var(--dees-color-scrollbar-thumb) transparent;
|
||||
}
|
||||
|
||||
:host([overscroll="contain"]) .tile-content {
|
||||
overscroll-behavior: contain;
|
||||
}
|
||||
|
||||
.tile-content.no-footer {
|
||||
|
||||
Reference in New Issue
Block a user