Skip to content

Commit 929f311

Browse files
committed
add temp hardcoded box-shadow value
1 parent 03061d6 commit 929f311

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

packages/uui-dialog/lib/uui-dialog.element.ts

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,13 @@ export class UUIDialogElement extends LitElement {
2222
--uui-dialog-background-color,
2323
var(--uui-interface-surface)
2424
);
25-
box-shadow: var(--uui-dialog-box-shadow, var(--uui-shadow-depth-5));
25+
26+
/* TODO: fix automatic fallback values for shadows shadows. var(--uui-shadow-depth-5) */
27+
box-shadow: var(
28+
--uui-dialog-box-shadow,
29+
0 19px 38px rgba(0, 0, 0, 0.3),
30+
0 15px 12px rgba(0, 0, 0, 0.22)
31+
);
2632
border-radius: var(
2733
--uui-dialog-border-radius,
2834
calc(var(--uui-border-radius) * 2)

0 commit comments

Comments
 (0)