Skip to content

Commit

Permalink
fix(display): fix display class
Browse files Browse the repository at this point in the history
  • Loading branch information
moshie committed Feb 9, 2023
1 parent eaf5e0f commit c8973c2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/styles/Display.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ const createResponsiveDisplay = () =>
...displayProperties.reduce(
(acc, property) => ({
...acc,
[`${breakpoint}\\:${property === 'none' ? 'hidden' : property}`]: { display: property },
[`.${breakpoint}\\:${property === 'none' ? 'hidden' : property}`]: { display: property },
}),
{},
),
Expand Down
Loading

0 comments on commit c8973c2

Please sign in to comment.