Skip to content

Commit 6b12a97

Browse files
authored
fix: export client css (#3148)
1 parent 0a91b1b commit 6b12a97

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

src/flows/components/ClientList.tsx

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,10 @@ const ClientList: FC = () => {
1414
const {launch} = useContext(PopupContext)
1515

1616
return (
17-
<FlexBox style={{flexWrap: 'wrap'}} className="flow-sidebar--client-list">
17+
<FlexBox
18+
style={{flexWrap: 'wrap', gap: '8px'}}
19+
className="flow-sidebar--client-list"
20+
>
1821
{Object.values(CLIENT_DEFINITIONS).map(item => {
1922
const click = (client: string) => {
2023
event('Export Client Library Opened', {client})

src/flows/components/Sidebar.scss

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@
88
.sidebar--item {
99
width: 137px;
1010
height: 137px;
11-
margin-bottom: $cf-space-2xs;
12-
margin-right: $cf-space-2xs;
1311

1412
.cf-selectable-card--body {
1513
overflow: hidden;

0 commit comments

Comments
 (0)