Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/connectors/src/connector-item.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ export function ConnectorItem( {
return (
<Item className={ className }>
<VStack spacing={ 4 }>
<HStack alignment="center" spacing={ 4 }>
<HStack alignment="center" spacing={ 4 } wrap>
{ icon }
<FlexBlock>
<VStack spacing={ 0 }>
Expand Down
14 changes: 14 additions & 0 deletions routes/connectors-home/style.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
@use "@wordpress/base-styles/colors" as *;

.connectors-page {
box-sizing: border-box;
width: 100%;
max-width: 680px;
margin: 0 auto;
Expand All @@ -22,4 +23,17 @@
text-align: center;
color: $gray-600;
}

@media (max-width: 480px) {
padding: 16px;

.components-item {
padding: 16px;

> .components-v-stack > .components-h-stack:first-child svg {
width: 32px;
height: 32px;
}
}
}
}
Loading