Skip to content

Commit

Permalink
replace padding-inline-start with more standard padding-left
Browse files Browse the repository at this point in the history
  • Loading branch information
gwyneplaine committed Sep 2, 2021
1 parent 55dc85a commit 72affc0
Showing 1 changed file with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,7 @@ const ListCard = ({ listKey, count }: ListCardProps) => {
const [isCreateModalOpen, setIsCreateModalOpen] = useState(false);
const router = useRouter();
return (
<div
css={{
position: 'relative',
}}
>
<div css={{ position: 'relative' }}>
<Link
href={`/${list.path}`}
css={{
Expand Down Expand Up @@ -167,7 +163,7 @@ export const HomePage = () => {
gap="large"
paddingY="xlarge"
css={{
paddingInlineStart: '0px',
paddingLeft: '0px',
marginBottom: '0px',
}}
>
Expand Down

0 comments on commit 72affc0

Please sign in to comment.