Skip to content

Commit

Permalink
fix: changed overflow style and opacity (#170)
Browse files Browse the repository at this point in the history
* Changed overflow style and opacity

* revert border
  • Loading branch information
Specy committed Sep 4, 2022
1 parent acf6b83 commit 2824b50
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions packages/runtime/src/App.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@
.window {
font-family: sans-serif;
background-color: rgb(11, 21, 33);
background-color: rgba(11, 21, 33, 0.85);
backdrop-filter: blur(1px);
color: white;
position: fixed;
bottom: 0px;
Expand Down Expand Up @@ -72,7 +73,7 @@
.list-scroll {
height: 100%;
overflow: scroll;
overflow-y: auto;
flex-grow: 1;
}
Expand Down
2 changes: 1 addition & 1 deletion packages/runtime/src/components/Diagnostic.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@
.frame {
margin: 1em 0;
padding: 6px 8px;
background: #16181d;
background: rgba(22, 24, 29, 0.85);
margin-top: 8px;
border-radius: 8px;
}
Expand Down

0 comments on commit 2824b50

Please sign in to comment.