Skip to content

Commit

Permalink
big shadows
Browse files Browse the repository at this point in the history
  • Loading branch information
hmrtn committed Jan 5, 2022
1 parent d03d958 commit 73a64c1
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion packages/react-app/src/routes/create/Create.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ const Create = ({ address, mainnetProvider, userSigner, tx, readContracts, write
Back
</Button>
<Center p='5'>
<Box borderWidth={"1px"} shadow="md" rounded="md" p="10" w="4xl" minW='sm'>
<Box borderWidth={"1px"} shadow="xl" rounded="md" p="10" w="4xl" minW='sm'>
<Center p='5'>
<Text fontSize="lg">Create Party</Text>
</Center>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { useHistory, Link } from "react-router-dom";
export const EmptyCard = ({}) => {
const routeHistory = useHistory();
return (
<Box borderWidth="1px" rounded="md" shadow="md" p="5" w="sm" key={`box-create`}>
<Box borderWidth="1px" rounded="md" shadow="xl" p="5" w="sm" key={`box-create`}>
<Text>No Parties</Text>
<Button
variant="link"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { useHistory, Link } from "react-router-dom";
export const PartyCard = ({ name, desc, id }) => {
const routeHistory = useHistory();
return (
<Box borderWidth="1px" key={`box-${id}`} rounded="md" shadow="md" p="5" w="sm">
<Box borderWidth="1px" key={`box-${id}`} rounded="md" shadow="xl" p="5" w="sm">
<Text fontSize="lg" fontWeight="semibold">
{name}
</Text>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ export const Distribute = ({
};

return (
<Box borderWidth={"1px"} shadow="md" rounded="md" p="10" w="4xl" minW='lg'>
<Box borderWidth={"1px"} shadow="xl" rounded="md" p="10" w="4xl" minW='lg'>
<Center pb='10'>
<Text fontSize="lg">Distribute Funds</Text>
</Center>
Expand Down
2 changes: 1 addition & 1 deletion packages/react-app/src/routes/party/components/View.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ export const View = ({ partyData, mainnetProvider, votesData, distribution }) =>
}, [partyData, castVotes]);

return (
<Box borderWidth={"1px"} shadow='md' rounded='md' p='10' w='4xl'>
<Box borderWidth={"1px"} shadow='xl' rounded='md' p='10' w='4xl'>
<Center pt={4}>
<Text fontSize="lg">Party</Text>
</Center>
Expand Down
2 changes: 1 addition & 1 deletion packages/react-app/src/routes/party/components/Vote.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ export const Vote = ({ dbInstance, partyData, address, userSigner, targetNetwork
}, [partyData, votesLeft]);

return (
<Box borderWidth={"1px"} shadow="md" rounded="md" p="10" w="4xl" minW="sm">
<Box borderWidth={"1px"} shadow="xl" rounded="md" p="10" w="4xl" minW="sm">
<Center pt={4}>
<Text fontSize="lg">Party</Text>
</Center>
Expand Down

0 comments on commit 73a64c1

Please sign in to comment.