+
+ There are no proposals at the moment!
+
+ Any worthwhile idea going on on your mind? Feel free to smash that button and see find out if the community
+ likes it!
+
+
+ {showProposeModal && (
+
+
+
+ )}
+ {showProposeVoteModal && (
+
+
+
+ )}
+
+ {!mobileVersion && (
+
+ {account ? (
+ setShowProposeModal(true)}>
+ Create proposal
+
+ ) : (
+ {
+ if ((window as any).ethereum) {
+ activateBrowserWallet()
+ } else setSelectConnect(true)
+ }}
+ >
+ Connect to vote
+
+ )}
+
+ )}
+
+ )
+}
+
+const VotingEmptyWrap = styled.div`
+ position: absolute;
+ top: 96px;
+ left: 50%;
+ transform: translateX(-50%);
+ padding: 0 32px;
+ display: flex;
+ flex-direction: column;
+ justify-content: center;
+ align-items: center;
+ width: 100%;
+ height: calc(100vh - 96px);
+ background: #fffff;
+ z-index: 99;
+
+ @media (max-width: 600px) {
+ height: 250px;
+ top: 50vh;
+ padding: 0 16px;
+ }
+`
+
+const EmptyWrap = styled.div`
+ width: 100%;
+ max-width: 800px;
+ display: flex;
+ flex-direction: column;
+ align-items: center;
+`
+
+const EmptyHeading = styled.h1`
+ font-weight: bold;
+ font-size: 28px;
+ line-height: 38px;
+ letter-spacing: -0.4px;
+ margin-bottom: 8px;
+ text-align: center;
+
+ @media (max-width: 600px) {
+ font-size: 22px;
+ line-height: 22px;
+ padding: 0 16px;
+ }
+ @media (max-width: 375px) {
+ font-size: 20px;
+ }
+`
+
+const EmptyText = styled.p`
+ font-size: 22px;
+ text-align: center;
+ line-height: 32px;
+ margin: 0;
+ margin-bottom: 24px;
+
+ @media (max-width: 600px) {
+ font-size: 13px;
+ line-height: 18px;
+ margin: 0;
+ padding: 0 16px;
+ }
+
+ @media (max-width: 340px) {
+ font-size: 12px;
+ }
+`