We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0a91b1b commit 6b12a97Copy full SHA for 6b12a97
src/flows/components/ClientList.tsx
@@ -14,7 +14,10 @@ const ClientList: FC = () => {
14
const {launch} = useContext(PopupContext)
15
16
return (
17
- <FlexBox style={{flexWrap: 'wrap'}} className="flow-sidebar--client-list">
+ <FlexBox
18
+ style={{flexWrap: 'wrap', gap: '8px'}}
19
+ className="flow-sidebar--client-list"
20
+ >
21
{Object.values(CLIENT_DEFINITIONS).map(item => {
22
const click = (client: string) => {
23
event('Export Client Library Opened', {client})
src/flows/components/Sidebar.scss
@@ -8,8 +8,6 @@
8
.sidebar--item {
9
width: 137px;
10
height: 137px;
11
- margin-bottom: $cf-space-2xs;
12
- margin-right: $cf-space-2xs;
13
.cf-selectable-card--body {
overflow: hidden;
0 commit comments