File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ export function VoteComponent() {
3131 console . debug ( 'votes' , votes )
3232
3333 return (
34- < Col className = "mx-4 " >
34+ < Col className = "mx-2 " >
3535 < Title className = "!mb-2 text-3xl" > Proposals</ Title >
3636 { votes && votes . length > 0 && < Col className = { 'mt-4' } >
3737 { votes . map ( ( vote : Vote ) => {
Original file line number Diff line number Diff line change @@ -2,7 +2,6 @@ import {LovePage} from 'web/components/love-page'
22import { Col } from 'web/components/layout/col'
33import { SEO } from 'web/components/SEO'
44import { useUser } from 'web/hooks/use-user'
5- import { BackButton } from 'web/components/back-button'
65import { CompassLoadingIndicator } from "web/components/widgets/loading-indicator" ;
76import { VoteComponent } from "web/components/votes/vote-info" ;
87
@@ -22,8 +21,6 @@ export default function VotePage() {
2221 description = { 'A place to vote on decisions' }
2322 url = { `/vote` }
2423 />
25- < BackButton className = "-ml-2 mb-2 self-start" />
26-
2724 { user === undefined ? (
2825 < CompassLoadingIndicator />
2926 ) : (
You can’t perform that action at this time.
0 commit comments