Skip to content

Commit abcb237

Browse files
committed
no box shadow, lighter sand color
1 parent dca29c3 commit abcb237

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

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

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ function slotHasContent(target: EventTarget | null): boolean {
2020
* @slot - area for the content of the box
2121
* @cssprop --uui-box-header-padding - overwrite the header padding
2222
* @cssprop --uui-box-default-padding - overwrite the box padding
23-
* @cssprop --uui-box-border-width - overwrite the box border, default is 0
2423
* @cssprop --uui-box-box-shadow - overwrite the box shadow, default is var(--uui-shadow-depth-1)
2524
* @cssprop --uui-box-border-radius - overwrite the box border-radius, default is var(--uui-border-radius)
2625
* @cssprop --uui-box-border-color - overwrites the box border colorm default is var(--uui-color-divider-standalone)
@@ -122,9 +121,8 @@ export class UUIBoxElement extends LitElement {
122121
css`
123122
:host {
124123
display: block;
125-
border: var(--uui-box-border-width, 0) solid
124+
border: 1px solid
126125
var(--uui-box-border-color, var(--uui-color-divider-standalone));
127-
box-shadow: var(--uui-box-box-shadow, var(--uui-shadow-depth-1));
128126
border-radius: var(--uui-box-border-radius, var(--uui-border-radius));
129127
background-color: var(--uui-color-surface);
130128
}

packages/uui-css/lib/custom-properties/palette.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@
321321
204
322322
); /* color($gravel saturation(- 82%) blackness(+ 6%)); */
323323

324-
$sand: #f3f3f5;
324+
$sand: #f6f6f7;
325325
--uui-palette-sand: $sand;
326326
--uui-palette-sand-light: rgb(
327327
255,

0 commit comments

Comments
 (0)