Skip to content

Commit

Permalink
fix(gui): blurarea clipping chrome
Browse files Browse the repository at this point in the history
  • Loading branch information
ferothefox committed Aug 13, 2023
1 parent 916649f commit 8ac5cf7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion apps/gui/src/app.postcss
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,9 @@ input {
position: absolute;
user-select: none;
pointer-events: none;
width: 100%;
width: calc(100% - 8px);
right: 4px;
left: 4px;
height: 96px;
z-index: 1;
-webkit-backdrop-filter: blur(20px);
Expand Down
2 changes: 1 addition & 1 deletion apps/gui/src/lib/components/TitleBar.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,4 @@
</div>
</div>

<div class="beatforge-titlebar-blur-area right-4" />
<div class="beatforge-titlebar-blur-area" />

0 comments on commit 8ac5cf7

Please sign in to comment.