Skip to content

Commit b78924b

Browse files
Fix back to list button for circuit (#395)
* Removed the component of search bar and filter options * Use margin left to make some space with back to list side bar --------- Co-authored-by: Loris Olivier <53363974+loris-maru@users.noreply.github.com>
1 parent 3db245e commit b78924b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/components/explore-section/Circuit/DetailView/main-detail-view-core.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ function MainDetailViewCore({
2323
derivedCircuits: CircuitSchemaProps[] | null;
2424
}) {
2525
return (
26-
<div className="relative py-10 pl-20 pr-10 text-primary-9">
26+
<div className="relative ml-20 py-10 pr-10 text-primary-9">
2727
<HeaderDetailView content={content} />
2828
<Visualiser content={content} />
2929
<SectionMainContainer
@@ -127,7 +127,7 @@ export default function CircuitDetailPage() {
127127
}
128128

129129
return (
130-
<div className="relative overflow-y-scroll bg-white">
130+
<div className="relative flex flex-row flex-nowrap overflow-y-scroll bg-white">
131131
<DetailsPageSideBackLink />
132132
{circuitData && (
133133
<MainDetailViewCore

0 commit comments

Comments
 (0)