Skip to content

Commit

Permalink
refactor: sort classnames
Browse files Browse the repository at this point in the history
  • Loading branch information
alextes committed Apr 12, 2024
1 parent fb21b32 commit 6fd83c0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions src/relay/RelayDashboards.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,8 @@ const RelayDashboard: FC<RelayDashboardProps> = ({
holesky testnet
</div>
) : null}
<div className="flex flex-col gap-y-4 mt-16 mb-32 md:px-16 xs:px-4">
<div className="flex flex-col gap-x-4 gap-y-4 mt-16 lg:flex-row">
<div className="mt-16 mb-32 flex flex-col gap-y-4 xs:px-4 md:px-16">
<div className="mt-16 flex flex-col gap-x-4 gap-y-4 lg:flex-row">
<div className="flex lg:w-1/2">
<AddressWidget />
</div>
Expand Down
6 changes: 3 additions & 3 deletions src/relay/sections/CensorshipSection/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ const CensorshipSection: FC<Props> = ({
subtitle="not ultra sound"
link="sanctions-censorship"
>
<div className="flex justify-center p-8 w-full rounded-lg bg-slateus-700">
<div className="flex gap-4 items-center">
<div className="flex w-full justify-center rounded-lg bg-slateus-700 p-8">
<div className="flex items-center gap-4">
<LabelText>time frame</LabelText>
<TimeFrameControl
selectedTimeFrame={timeFrame}
Expand All @@ -82,7 +82,7 @@ const CensorshipSection: FC<Props> = ({
/>
</div>
</div>
<div className="grid grid-cols-1 gap-4 w-full lg:grid-cols-2">
<div className="grid w-full grid-cols-1 gap-4 lg:grid-cols-2">
<div className="flex flex-col gap-4">
{/* <RelayCensorshipWidget
onClickTimeFrame={handleClickTimeFrame}
Expand Down

0 comments on commit 6fd83c0

Please sign in to comment.