Skip to content

Commit

Permalink
Fixed the scrollbar showing on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
Clooos authored May 25, 2024
1 parent 8b5af6e commit f095ff6
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dist/bubble-card.js

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions src/cards/button/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,11 @@ export default `
.bubble-button-card {
overflow: scroll;
-ms-overflow-style: none; /* for Internet Explorer, Edge */
scrollbar-width: none; /* for Firefox */
}
.bubble-button-card::-webkit-scrollbar {
display: none; /* for Chrome, Safari, and Opera */
}
.is-unavailable .bubble-button-card,
.is-unavailable .bubble-range-slider {
Expand Down
2 changes: 1 addition & 1 deletion src/var/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export let version = 'v2.0.0-beta.9';
export let version = 'v2.0.0-beta.10';

0 comments on commit f095ff6

Please sign in to comment.