@@ -31,7 +31,6 @@ import {
31
31
useInvalidateStreamAbilities ,
32
32
} from '~/shared/stores/streamAbilities'
33
33
import { useWalletAccount } from '~/shared/stores/wallet'
34
- import { DESKTOP , TABLET } from '~/shared/utils/styled'
35
34
import { truncateStreamName } from '~/shared/utils/text'
36
35
import {
37
36
StreamDraft ,
@@ -79,7 +78,7 @@ export function StreamEditPage({
79
78
{ streamId ? < StreamSummary streamId = { streamId } /> : < > </ > }
80
79
< LoadingIndicator loading = { isLoading } />
81
80
< LayoutColumn >
82
- < Footerless >
81
+ < >
83
82
< SegmentGrid >
84
83
< ColoredBox >
85
84
< Pad >
@@ -112,7 +111,7 @@ export function StreamEditPage({
112
111
{ canGrant && < CreateProjectHint streamId = { streamId } /> }
113
112
</ >
114
113
) }
115
- </ Footerless >
114
+ </ >
116
115
</ LayoutColumn >
117
116
</ >
118
117
)
@@ -154,7 +153,7 @@ export function StreamConnectPage() {
154
153
< LoadingIndicator loading = { isLoading } />
155
154
< LayoutColumn >
156
155
{ streamId != null && (
157
- < Footerless >
156
+ < >
158
157
< SegmentGrid >
159
158
< ColoredBox >
160
159
< Pad >
@@ -163,7 +162,7 @@ export function StreamConnectPage() {
163
162
</ ColoredBox >
164
163
</ SegmentGrid >
165
164
< RelatedProjects streamId = { streamId } />
166
- </ Footerless >
165
+ </ >
167
166
) }
168
167
</ LayoutColumn >
169
168
</ >
@@ -316,7 +315,7 @@ function StreamEntityForm(props: StreamEntityFormProps) {
316
315
}
317
316
} }
318
317
>
319
- < Layout footer = { null } >
318
+ < Layout >
320
319
< Header saveButtonRef = { attach } />
321
320
{ typeof children === 'function' ? children ( attach , ready ) : children }
322
321
</ Layout >
@@ -456,18 +455,6 @@ const SaveButton = styled(Button)`
456
455
justify-self: right;
457
456
`
458
457
459
- const Footerless = styled . div `
460
- padding-bottom: 80px;
461
-
462
- @media ${ TABLET } {
463
- padding-bottom: 92px;
464
- }
465
-
466
- @media ${ DESKTOP } {
467
- padding-bottom: 128px;
468
- }
469
- `
470
-
471
458
const Wings = styled . div `
472
459
display: grid;
473
460
grid-template-columns: fit-content(680px) auto;
0 commit comments