Skip to content

Commit e0e9d68

Browse files
committed
ui (v0.1.20)
1 parent e87648f commit e0e9d68

File tree

4 files changed

+8
-3
lines changed

4 files changed

+8
-3
lines changed

packages/ui/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# ui
22

3+
## 0.1.20
4+
5+
### Patch Changes
6+
7+
- fix styles
8+
39
## 0.1.19
410

511
### Patch Changes

packages/ui/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ui",
3-
"version": "0.1.19",
3+
"version": "0.1.20",
44
"main": "./dist/index.js",
55
"types": "./dist/index.d.ts",
66
"exports": {

packages/ui/src/components/Web/ScrollableBox.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -198,6 +198,7 @@ export function ScrollableTextBox() {
198198
scrollSnapType: 'y mandatory',
199199
msOverflowStyle: 'none',
200200
scrollbarWidth: 'none',
201+
overflowX: 'hidden',
201202
...(isDebug ? { background: 'rgba(0,255,0,0.25)' } : {}), // debug
202203
}}
203204
>

packages/ui/src/overrides/Web/UI.tsx

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,8 +114,6 @@ export function randomGradient(Component): ComponentType {
114114
return (props) => {
115115
const [store, setStore] = useStore()
116116

117-
console.log('store.randomColor', store.randomColor)
118-
119117
return (
120118
<Component
121119
{...props}

0 commit comments

Comments
 (0)