diff options
author | 2020-09-28 20:52:16 +0100 | |
---|---|---|
committer | 2020-09-28 20:52:16 +0100 | |
commit | cc8d514984c4a5826917eac50bf5755b985d2783 (patch) | |
tree | a1d0ca0884dd6954b28b3e2977a434dbc21a0335 /src/components | |
parent | Use Uni Sans font for header (diff) |
Change form listing styles
Diffstat (limited to 'src/components')
-rw-r--r-- | src/components/FormListing.tsx | 6 |
1 files changed, 3 insertions, 3 deletions
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); } `; |