Skip to content

Commit 32c3562

Browse files
committed
Fix build break
1 parent 229019b commit 32c3562

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

packages/component/src/ScrollToBottom/AutoHideFollowButton.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ import Context from './Context';
55

66
const ROOT_CSS = css({
77
backgroundColor: 'rgba(0, 0, 0, .2)',
8-
borderRadius: 5,
8+
borderRadius: 10,
99
borderWidth: 0,
1010
bottom: 5,
1111
cursor: 'pointer',
12-
height: 10,
12+
height: 20,
1313
outline: 0,
1414
position: 'absolute',
1515
right: 20,
16-
width: 60,
16+
width: 20,
1717

1818
'&:hover': {
1919
backgroundColor: 'rgba(0, 0, 0, .4)'

packages/component/src/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
1+
import AutoHideFollowButton from './ScrollToBottom/AutoHideFollowButton';
12
import BasicScrollToBottom from './BasicScrollToBottom';
23
import Composer from './ScrollToBottom/Composer';
34
import Context from './ScrollToBottom/Context';
4-
import FollowButton from './ScrollToBottom/FollowButton';
55
import Panel from './ScrollToBottom/Panel';
66

77
export default BasicScrollToBottom
88

99
export {
10+
AutoHideFollowButton,
1011
Composer,
1112
Context,
12-
FollowButton,
1313
Panel
1414
}

0 commit comments

Comments
 (0)