From cc8d514984c4a5826917eac50bf5755b985d2783 Mon Sep 17 00:00:00 2001 From: Joe Banks Date: Mon, 28 Sep 2020 20:52:16 +0100 Subject: Change form listing styles --- src/components/FormListing.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/components/FormListing.tsx b/src/components/FormListing.tsx index 99ba866..055c624 100644 --- a/src/components/FormListing.tsx +++ b/src/components/FormListing.tsx @@ -17,15 +17,15 @@ interface FormListingProps { function FormListing(props: FormListingProps) { const listingStyle = css` background-color: ${props.open ? colors.success : colors.darkButNotBlack}; - width: 80%; + width: 60%; padding: 20px; margin-top: 20px; margin-bottom: 20px; border-radius: 10px; - transition: filter 100ms; + transition: transform 100ms; &:hover { - filter: brightness(110%); + transform: scale(1.01); } `; -- cgit v1.2.3