Skip to content

Commit 772f0fd

Browse files
authored
Merge pull request #2196 from oasisprotocol/kaja/snapshot-header-spacing
Fix responsiveness in paratime snapshot header
2 parents f51b14c + f960da0 commit 772f0fd

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.changelog/2196.bugfix.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Fix responsiveness in paratime snapshot header

src/app/components/Snapshots/Snapshot.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ type SnapshotProps = {
1313
export const Snapshot: FC<SnapshotProps> = ({ children, header, scope, title }) => {
1414
return (
1515
<>
16-
<div className="grid grid-cols-12 gap-x-4 gap-y-2 px-4 pb-4 sm:px-0 sm:pb-0">
17-
<div className="col-span-12 md:col-span-6 lg:col-span-4">
16+
<div className="grid grid-cols-12 gap-x-4 gap-y-2 px-4 pb-4 md:px-0 md:pb-0">
17+
<div className="col-span-12">
1818
<AppendMobileSearch scope={scope}>
1919
<div className="flex md:mb-6 flex-col sm:flex-row sm:items-center gap-1">
2020
<Typography variant="h2">{title}</Typography>

0 commit comments

Comments
 (0)