diff options
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);      }    `; | 
