Skip to content

Commit

Permalink
Merge pull request #356 from liam-hq/adjust-the-appearance-of-the-too…
Browse files Browse the repository at this point in the history
…lbar-on-mobile-devices

⚒️ Adjust the appearance of the toolbar on mobile devices
  • Loading branch information
MH4GF authored Dec 24, 2024
2 parents 3aa9f92 + e3faa74 commit edf2e4e
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions frontend/.changeset/fair-mayflies-exist.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"@liam-hq/erd-core": patch
"@liam-hq/cli": patch
---

⚒️ Adjust the appearance of the toolbar on mobile devices.
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export const CardinalityZeroOrManyLeftMarker: FC<MarkerProps> = ({
...props
}) => {
return (
<svg role="img" aria-label="Zero or Many Left Marker">
<svg width="0" height="0" role="img" aria-label="Zero or Many Left Marker">
<defs>
<marker
id={id}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export const CardinalityZeroOrOneLeftMarker: FC<MarkerProps> = ({
...props
}) => {
return (
<svg role="img" aria-label="Zero or One Left Marker">
<svg width="0" height="0" role="img" aria-label="Zero or One Left Marker">
<defs>
<marker
id={id}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ export const CardinalityZeroOrOneRightMarker: FC<MarkerProps> = ({
...props
}) => {
return (
<svg role="img" aria-label="Zero or One Right Marker">
<svg width="0" height="0" role="img" aria-label="Zero or One Right Marker">
<defs>
<marker
id={id}
Expand Down

0 comments on commit edf2e4e

Please sign in to comment.