File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ function slotHasContent(target: EventTarget | null): boolean {
18
18
* @slot header - header area, use this for things that are not the headline but are located in the header.
19
19
* @slot header-actions - right-side of the box header, use this to append some actions that are general for the topic of this box.
20
20
* @slot - area for the content of the box
21
+ * @cssprop --uui-box-header-padding - overwrite the header padding
21
22
* @cssprop --uui-box-default-padding - overwrite the box padding
22
23
*
23
24
*/
@@ -128,7 +129,10 @@ export class UUIBoxElement extends LitElement {
128
129
display : flex;
129
130
column-gap : var (--uui-size-space-5 );
130
131
border-bottom : 1px solid var (--uui-color-divider-standalone );
131
- padding : var (--uui-size-space-4 ) var (--uui-size-space-5 );
132
+ padding : var (
133
+ --uui-box-header-padding ,
134
+ var (--uui-size-space-4 ) var (--uui-size-space-5 )
135
+ );
132
136
}
133
137
134
138
slot : not ([name ]) {
You can’t perform that action at this time.
0 commit comments