fix: some styled for collections and links

This commit is contained in:
Sonny
2024-05-19 16:02:32 +02:00
committed by Sonny
parent 2ba0eccc9f
commit 32133be8b0
5 changed files with 57 additions and 62 deletions

View File

@@ -2,7 +2,6 @@ import styled from '@emotion/styled';
import { Link } from '@inertiajs/react';
export const Item = styled.div(({ theme }) => ({
cursor: 'pointer',
userSelect: 'none',
height: '40px',
width: '250px',
@@ -21,6 +20,7 @@ export const Item = styled.div(({ theme }) => ({
// Disable hover effect for UserCard
'&:hover:not(.disable-hover)': {
cursor: 'pointer',
backgroundColor: theme.colors.secondary,
outlineWidth: '1px',
outlineStyle: 'solid',