Add rule to order css in styled components alphabetically (#284)

* Add plugin

* Run plugin
This commit is contained in:
Félix Malfait
2023-06-14 07:59:16 +02:00
committed by GitHub
parent 830b76cd9a
commit eb8fc50ff1
72 changed files with 568 additions and 511 deletions

View File

@ -6,19 +6,19 @@ import { IconPlus } from '@/ui/icons/index';
import { isRightDrawerOpenState } from '../states/isRightDrawerOpenState';
const StyledButton = styled.button`
height: 24px;
width: 24px;
border: 1px solid ${(props) => props.theme.lightBorder};
align-items: center;
background: none;
border: 1px solid ${(props) => props.theme.lightBorder};
border-radius: 4px;
cursor: pointer;
display: flex;
flex-direction: row;
align-items: center;
height: 24px;
padding: 3px;
border-radius: 4px;
transition: ${(props) => props.theme.clickableElementBackgroundTransition};
width: 24px;
&:hover {
background: ${(props) => props.theme.clickableElementBackgroundHover};
}