Minor fix

This commit is contained in:
Thunnini 2022-12-17 00:29:56 +09:00
parent b4bf1f4ee8
commit dd8f108cb7

View File

@ -14,15 +14,13 @@ export const GlobalStyle = createGlobalStyle`
background-size: 5rem 5rem; background-size: 5rem 5rem;
background-position: top left; background-position: top left;
background-repeat: repeat; background-repeat: repeat;
background-image: linear-gradient( background-image: linear-gradient(${({ theme }) =>
${({ theme }) => theme.bgGridColor ?? color.grey[600]} 0.1rem, theme.bgGridColor ?? color.grey[600]} 0.1rem,
transparent 0.1rem transparent 0.1rem),
),
linear-gradient(90deg, ${({ theme }) => linear-gradient(90deg, ${({ theme }) =>
theme.bgGridColor ?? color.grey[600]} 0.1rem, transparent 0.1rem); theme.bgGridColor ?? color.grey[600]} 0.1rem, transparent 0.1rem);
} }
}
* { * {
box-sizing: border-box; box-sizing: border-box;
} }