mirror of
https://github.com/status-im/community-dapp.git
synced 2025-02-23 03:28:21 +00:00
Mobile UI (#151)
This commit is contained in:
parent
ccbbc7de05
commit
e222226787
@ -31,6 +31,10 @@ export const ButtonPrimary = styled(Button)`
|
|||||||
export const ProposeButton = styled(ButtonPrimary)`
|
export const ProposeButton = styled(ButtonPrimary)`
|
||||||
padding: 10px 0;
|
padding: 10px 0;
|
||||||
width: 343px;
|
width: 343px;
|
||||||
|
|
||||||
|
@media (max-width: 600px) {
|
||||||
|
width: 100%;
|
||||||
|
}
|
||||||
`
|
`
|
||||||
|
|
||||||
export const ButtonSecondary = styled(Button)`
|
export const ButtonSecondary = styled(Button)`
|
||||||
|
@ -9,13 +9,17 @@ export const Card = styled.div`
|
|||||||
@media (max-width: 768px) {
|
@media (max-width: 768px) {
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
padding: 16px 0;
|
padding: 16px 0 32px;
|
||||||
border-top: 1px solid #e0e0e0;
|
border-bottom: 1px solid #e0e0e0;
|
||||||
}
|
}
|
||||||
|
|
||||||
&:last-child {
|
@media (max-width: 600px) {
|
||||||
|
padding-bottom: 16px;
|
||||||
|
}
|
||||||
|
|
||||||
|
&:not:first-child {
|
||||||
@media (max-width: 768px) {
|
@media (max-width: 768px) {
|
||||||
border-bottom: 1px solid #e0e0e0;
|
border-top: 1px solid #e0e0e0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
`
|
`
|
||||||
@ -54,8 +58,8 @@ export const CardVoteWrap = styled.div`
|
|||||||
width: 100%;
|
width: 100%;
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
border-radius: unset;
|
border-radius: unset;
|
||||||
border-bottom: 1px solid #e0e0e0;
|
|
||||||
background-color: unset;
|
background-color: unset;
|
||||||
|
padding-bottom: 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width: 600px) {
|
@media (max-width: 600px) {
|
||||||
|
@ -32,4 +32,9 @@ export const Search = styled(Input)`
|
|||||||
background-size: 24px 24px;
|
background-size: 24px 24px;
|
||||||
background-repeat: no-repeat;
|
background-repeat: no-repeat;
|
||||||
background-position: center left 10px;
|
background-position: center left 10px;
|
||||||
|
|
||||||
|
@media (max-width: 375px) {
|
||||||
|
width: 80%;
|
||||||
|
margin-right: 8px;
|
||||||
|
}
|
||||||
`
|
`
|
||||||
|
@ -75,7 +75,7 @@ const VotingRules = styled.div`
|
|||||||
}
|
}
|
||||||
|
|
||||||
@media (max-width: 600px) {
|
@media (max-width: 600px) {
|
||||||
padding: 0;
|
padding: 182px 16px 16px;
|
||||||
background-color: unset;
|
background-color: unset;
|
||||||
border: none;
|
border: none;
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
|
@ -102,6 +102,10 @@ export const ProposingInfo = styled.div`
|
|||||||
justify-content: space-between;
|
justify-content: space-between;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
|
|
||||||
|
@media (max-width: 600px) {
|
||||||
|
max-width: 525px;
|
||||||
|
}
|
||||||
|
|
||||||
& > span {
|
& > span {
|
||||||
font-size: 24px;
|
font-size: 24px;
|
||||||
line-height: 32px;
|
line-height: 32px;
|
||||||
|
@ -13,8 +13,11 @@ import { VotingSortingOptions } from '../constants/SortingOptions'
|
|||||||
import { VotingCardCover } from '../componentsMobile/VotingCardCover'
|
import { VotingCardCover } from '../componentsMobile/VotingCardCover'
|
||||||
import { ButtonPrimary } from '../components/Button'
|
import { ButtonPrimary } from '../components/Button'
|
||||||
import { useHistory } from 'react-router'
|
import { useHistory } from 'react-router'
|
||||||
|
import { useEthers } from '@usedapp/core'
|
||||||
|
import { ConnectButton } from '../components/ConnectButton'
|
||||||
|
|
||||||
export function VotesMobile() {
|
export function VotesMobile() {
|
||||||
|
const { account } = useEthers()
|
||||||
const [sortedBy, setSortedBy] = useState(VotingSortingEnum.EndingSoonest)
|
const [sortedBy, setSortedBy] = useState(VotingSortingEnum.EndingSoonest)
|
||||||
const [voteType, setVoteType] = useState('')
|
const [voteType, setVoteType] = useState('')
|
||||||
const [filterKeyword, setFilterKeyword] = useState('')
|
const [filterKeyword, setFilterKeyword] = useState('')
|
||||||
@ -51,29 +54,34 @@ export function VotesMobile() {
|
|||||||
{roomsToShow.length === 0 && empty && <VotingEmpty />}
|
{roomsToShow.length === 0 && empty && <VotingEmpty />}
|
||||||
{roomsToShow.length === 0 && !empty && <SearchEmpty />}
|
{roomsToShow.length === 0 && !empty && <SearchEmpty />}
|
||||||
</VotingCardsWrapper>
|
</VotingCardsWrapper>
|
||||||
|
|
||||||
<ProposeButtonWrapper>
|
<ProposeButtonWrapper>
|
||||||
<ProposeButton onClick={() => history.push('/propose')}>Propose community</ProposeButton>
|
{account ? (
|
||||||
|
<ProposeButton onClick={() => history.push('/propose')}>Propose community</ProposeButton>
|
||||||
|
) : (
|
||||||
|
<ConnectButton />
|
||||||
|
)}
|
||||||
</ProposeButtonWrapper>
|
</ProposeButtonWrapper>
|
||||||
</div>
|
</div>
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
const ProposeButton = styled(ButtonPrimary)`
|
export const ProposeButtonWrapper = styled.div`
|
||||||
margin: auto;
|
|
||||||
width: 100%;
|
|
||||||
padding: 10px 0;
|
|
||||||
text-align: center;
|
|
||||||
`
|
|
||||||
const ProposeButtonWrapper = styled.div`
|
|
||||||
display: flex;
|
|
||||||
position: fixed;
|
position: fixed;
|
||||||
padding: 0 16px;
|
padding: 0 16px;
|
||||||
bottom: 15px;
|
bottom: 15px;
|
||||||
width: 100%;
|
width: 100%;
|
||||||
`
|
`
|
||||||
|
|
||||||
|
export const ProposeButton = styled(ButtonPrimary)`
|
||||||
|
margin: auto;
|
||||||
|
width: 100%;
|
||||||
|
padding: 10px 0;
|
||||||
|
text-align: center;
|
||||||
|
`
|
||||||
|
|
||||||
const VotingCardsWrapper = styled.div`
|
const VotingCardsWrapper = styled.div`
|
||||||
padding: 307px 16px 16px;
|
padding: 307px 16px 68px;
|
||||||
|
|
||||||
@media (max-width: 340px) {
|
@media (max-width: 340px) {
|
||||||
padding-top: 320px;
|
padding-top: 320px;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user