-
Notifications
You must be signed in to change notification settings - Fork 111
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Sign up Redesign] Sign up white screens footer (web); add shadow mid inver to Harmony C-3358 C-3359ted #6671
Changes from 1 commit
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
.container { | ||
height: 100%; | ||
} | ||
|
||
.whitePageContainer { | ||
height: 100%; | ||
} | ||
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
.container { | ||
box-shadow: var(--harmony-shadow-mid-inverted); | ||
width: 100%; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Add There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. omg nice There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. there's also an emotion css prop if you wanna pass in the non-standard stuff and have no css file There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ahh ok good to know! |
||
position: sticky; | ||
bottom: 0; | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
import { PropsWithChildren } from 'react' | ||
|
||
import { Flex } from '@audius/harmony' | ||
|
||
import styles from './ContinueFooter.module.css' | ||
|
||
type ContinueFooterProps = PropsWithChildren<{}> | ||
|
||
export const ContinueFooter = ({ children }: ContinueFooterProps) => { | ||
return ( | ||
<Flex | ||
pv='l' | ||
justifyContent='center' | ||
gap='l' | ||
alignItems='center' | ||
direction='column' | ||
className={styles.container} | ||
> | ||
{children} | ||
</Flex> | ||
) | ||
} |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,8 @@ | ||
.container { | ||
.outerContainer { | ||
height: 100%; | ||
} | ||
|
||
.contentContainer { | ||
max-width: 610px; | ||
margin: 0 auto; | ||
} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We can use
<Box w='100%'> or h='100%'
for these and similar uses belowThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ooh thanks!