-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[feat] profile context integration with view plants and add details (#63
) Co-authored-by: Catherine Tan <[email protected]>
- Loading branch information
1 parent
379c69a
commit ee776c9
Showing
9 changed files
with
550 additions
and
233 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
import styled from 'styled-components'; | ||
import { SmallRoundedButton } from '@/components/Button'; | ||
|
||
export const MoveButton = styled(SmallRoundedButton)` | ||
border: 1px solid; | ||
font-family: inherit; | ||
margin-bottom: 10px; | ||
width: 170px; | ||
height: 50px; | ||
font-size: 15px; | ||
font-style: normal; | ||
font-weight: 400; | ||
line-height: normal; | ||
`; | ||
export const FooterButton = styled.div` | ||
display: flex; | ||
flex-direction: row; | ||
justify-content: end; | ||
width: 100%; | ||
position: absolute; | ||
bottom: 0; | ||
left: 50%; | ||
transform: translateX(-50%); | ||
padding: 24px; | ||
`; | ||
|
||
export const ButtonDiv = styled.div` | ||
display: flex; | ||
width: 100%; | ||
justify-content: space-between; | ||
&:has(:only-child) { | ||
justify-content: flex-end; | ||
} | ||
`; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.