Skip to content

Commit

Permalink
add box-shadow variables to improve customization
Browse files Browse the repository at this point in the history
  • Loading branch information
flobiwankenobi authored Dec 9, 2024
1 parent 163f280 commit 015ebcb
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/cards/button/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ export default `
height: 50px;
background-color: var(--bubble-button-main-background-color, var(--bubble-main-background-color, var(--background-color-2, var(--secondary-background-color))));
border-radius: var(--bubble-button-border-radius, var(--bubble-border-radius, 32px));
box-shadow: var(--bubble-button-box-shadow, var(--bubble-box-shadow, none))
overflow: scroll;
touch-action: pan-y;
}
Expand Down
1 change: 1 addition & 0 deletions src/cards/climate/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ export default `
height: 50px;
background-color: var(--bubble-climate-main-background-color, var(--bubble-main-background-color, var(--background-color-2, var(--secondary-background-color))));
border-radius: var(--bubble-climate-border-radius, var(--bubble-border-radius, 32px));
box-shadow: var(--bubble-climate-box-shadow, var(--bubble-box-shadow, none))
overflow: visible;
touch-action: pan-y;
}
Expand Down
1 change: 1 addition & 0 deletions src/cards/cover/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,7 @@ export default `
background: var(--bubble-cover-main-background-color, var(--bubble-main-background-color, var(--background-color-2, var(--secondary-background-color))));
height: 42px;
border-radius: var(--bubble-cover-border-radius, var(--bubble-border-radius, 32px));
box-shadow: var(--bubble-cover-box-shadow, var(--bubble-button-box-shadow, var(--bubble-box-shadow, none)))
align-items: center;
justify-content: center;
cursor: pointer;
Expand Down
1 change: 1 addition & 0 deletions src/cards/media-player/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ export default `
width: 100%;
height: 50px;
background-color: var(--bubble-media-player-main-background-color, var(--bubble-main-background-color, var(--background-color-2, var(--secondary-background-color))));
box-shadow: var(--bubble-media-player-box-shadow, var(--bubble-box-shadow, none))
touch-action: pan-y;
border-radius: var(--bubble-media-player-border-radius, var(--bubble-border-radius, 32px));
}
Expand Down
1 change: 1 addition & 0 deletions src/cards/select/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ export default `
height: 50px;
background-color: var(--bubble-select-main-background-color, var(--bubble-main-background-color, var(--background-color-2, var(--secondary-background-color))));
border-radius: var(--bubble-select-border-radius, var(--bubble-border-radius, 32px));
box-shadow: var(--bubble-select-box-shadow, var(--bubble-box-shadow, none))
touch-action: pan-y;
box-sizing: border-box;
border: solid 2px transparent;
Expand Down

0 comments on commit 015ebcb

Please sign in to comment.