Skip to content

Commit

Permalink
Merge pull request #359 from liam-hq/fixing-the-toolbar-display-bug
Browse files Browse the repository at this point in the history
⚒️ Fixing the toolbar display bug
  • Loading branch information
kumanoayumi authored Dec 24, 2024
2 parents c1e9522 + 1c20fd1 commit c5125b5
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
6 changes: 6 additions & 0 deletions frontend/.changeset/orange-books-join.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"@liam-hq/ui": patch
"@liam-hq/cli": patch
---

⚒️ Fixing the toolbar display bug
Original file line number Diff line number Diff line change
Expand Up @@ -45,3 +45,15 @@
.toolbarWrapper > * {
pointer-events: auto;
}
@media screen and (max-width: 768px) {
.toolbarWrapper {
transition: opacity 0.3s, visibility 0.3s;
opacity: 1;
visibility: visible;
min-width: 354px;
}
:global([data-state='expanded']) + .main .toolbarWrapper {
opacity: 0;
visibility: hidden;
}
}

0 comments on commit c5125b5

Please sign in to comment.