Skip to content

Commit 1fdb60c

Browse files
authored
fix: list header css (#4262)
1 parent e0d4d06 commit 1fdb60c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/flows/components/FlowsIndex.tsx

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ const FlowsIndex = () => {
139139
>
140140
<PageHeader
141141
style={{flex: 0, margin: '16px 0px'}}
142-
fullWidth={true}
142+
fullWidth={false}
143143
className={`${showButtonMode && 'withButtonHeader'}`}
144144
>
145145
{!isFlagEnabled('noTutorial') && (
@@ -176,7 +176,7 @@ const FlowsIndex = () => {
176176
<PresetFlowsButtons />
177177
<Page.ControlBar
178178
className="flows-index--control-bar buttonMode"
179-
fullWidth={true}
179+
fullWidth={false}
180180
>
181181
<Page.ControlBarLeft>
182182
<SearchWidget
@@ -199,7 +199,7 @@ const FlowsIndex = () => {
199199
</PageHeader>
200200
<DapperScrollbars onScroll={scrollHandler}>
201201
<Page.Contents
202-
fullWidth={true}
202+
fullWidth={false}
203203
id="fadebox"
204204
ref={fadingBoxRef}
205205
className="flows-index--contents"
@@ -223,7 +223,7 @@ const FlowsIndex = () => {
223223
) : (
224224
<Page.ControlBar
225225
className="flows-index--control-bar"
226-
fullWidth={true}
226+
fullWidth={false}
227227
>
228228
<Page.ControlBarLeft>
229229
<SearchWidget
@@ -244,7 +244,7 @@ const FlowsIndex = () => {
244244
)}
245245
</Page.Contents>
246246

247-
<Page.Contents fullWidth={true}>
247+
<Page.Contents fullWidth={false}>
248248
<FlowCards flows={flowList} search={search} />
249249
</Page.Contents>
250250
</DapperScrollbars>

0 commit comments

Comments
 (0)