Lint files based on updated rules

This commit is contained in:
jeffvli 2023-09-15 20:42:38 -07:00
parent d45b01625b
commit ec457d5125
57 changed files with 153 additions and 150 deletions

View file

@ -15,10 +15,10 @@ export const Command = styled(Cmdk)`
input[cmdk-input] {
width: 100%;
height: 1.5rem;
margin-bottom: 1rem;
padding: 1.3rem 0.5rem;
color: var(--input-fg);
margin-bottom: 1rem;
font-family: var(--content-font-family);
color: var(--input-fg);
background: var(--input-bg);
border: none;
border-radius: 5px;
@ -45,11 +45,11 @@ export const Command = styled(Cmdk)`
gap: 0.5rem;
align-items: center;
padding: 0.5rem;
color: var(--btn-default-fg);
font-family: var(--content-font-family);
color: var(--btn-default-fg);
cursor: pointer;
background: var(--btn-default-bg);
border-radius: 5px;
cursor: pointer;
svg {
width: 1.2rem;

View file

@ -17,10 +17,10 @@ const Item = styled(Flex)``;
const ItemGrid = styled.div<{ height: number }>`
display: grid;
grid-auto-columns: 1fr;
grid-template-areas: 'image info';
grid-template-rows: 1fr;
grid-template-columns: ${(props) => props.height}px minmax(0, 1fr);
grid-auto-columns: 1fr;
gap: 0.5rem;
width: 100%;
max-width: 100%;