File tree 1 file changed +2
-3
lines changed
1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ function slotHasContent(target: EventTarget | null): boolean {
23
23
* @cssprop --uui-box-border-width - overwrite the box border, default is 0
24
24
* @cssprop --uui-box-box-shadow - overwrite the box shadow, default is var(--uui-shadow-depth-1)
25
25
* @cssprop --uui-box-border-radius - overwrite the box border-radius, default is var(--uui-border-radius)
26
- *
26
+ * @cssprop --uui-box-border-color - overwrites the box border colorm default is var(--uui-color-divider-standalone)
27
27
*/
28
28
@defineElement ( 'uui-box' )
29
29
export class UUIBoxElement extends LitElement {
@@ -123,8 +123,7 @@ export class UUIBoxElement extends LitElement {
123
123
: host {
124
124
display : block;
125
125
border : var (--uui-box-border-width , 0 ) solid
126
- var (--uui-color-divider-standalone );
127
-
126
+ var (--uui-box-border-color , var (--uui-color-divider-standalone ));
128
127
box-shadow : var (--uui-box-box-shadow , var (--uui-shadow-depth-1 ));
129
128
border-radius : var (--uui-box-border-radius , var (--uui-border-radius ));
130
129
background-color : var (--uui-color-surface );
You can’t perform that action at this time.
0 commit comments