diff --git a/src/pages/StreamPage/index.tsx b/src/pages/StreamPage/index.tsx index 5ef730ff05..52d35f0b3e 100644 --- a/src/pages/StreamPage/index.tsx +++ b/src/pages/StreamPage/index.tsx @@ -31,7 +31,6 @@ import { useInvalidateStreamAbilities, } from '~/shared/stores/streamAbilities' import { useWalletAccount } from '~/shared/stores/wallet' -import { DESKTOP, TABLET } from '~/shared/utils/styled' import { truncateStreamName } from '~/shared/utils/text' import { StreamDraft, @@ -79,7 +78,7 @@ export function StreamEditPage({ {streamId ? : <>} - + <> @@ -112,7 +111,7 @@ export function StreamEditPage({ {canGrant && } )} - + ) @@ -154,7 +153,7 @@ export function StreamConnectPage() { {streamId != null && ( - + <> @@ -163,7 +162,7 @@ export function StreamConnectPage() { - + )} @@ -316,7 +315,7 @@ function StreamEntityForm(props: StreamEntityFormProps) { } }} > - +
{typeof children === 'function' ? children(attach, ready) : children} @@ -456,18 +455,6 @@ const SaveButton = styled(Button)` justify-self: right; ` -const Footerless = styled.div` - padding-bottom: 80px; - - @media ${TABLET} { - padding-bottom: 92px; - } - - @media ${DESKTOP} { - padding-bottom: 128px; - } -` - const Wings = styled.div` display: grid; grid-template-columns: fit-content(680px) auto;