Skip to content

Commit

Permalink
Merge pull request #746 from quoid/fix/broken-extension-page-layout
Browse files Browse the repository at this point in the history
fix: bypass extension page layout breakage
  • Loading branch information
ACTCD authored Oct 31, 2024
2 parents a54946b + 1b416ad commit 8efc6ea
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 9 deletions.
6 changes: 3 additions & 3 deletions src/ext/extension-page/App.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -73,10 +73,10 @@
{/if}
</div>
{/if}
<div>
<main>
<Sidebar />
<Editor />
</div>
</main>
<ul>
{#each $notifications as item (item.id)}
<Notification on:click={() => notifications.remove(item.id)} {item} />
Expand Down Expand Up @@ -115,7 +115,7 @@
font: var(--text-medium);
}
div:not(.initializer) {
main {
display: flex;
flex: 1 0 0;
overflow: hidden;
Expand Down
6 changes: 0 additions & 6 deletions src/ext/extension-page/Appios.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -79,12 +79,6 @@
font: var(--text-medium);
}
div:not(.initializer) {
display: flex;
flex: 1 0 0;
overflow: hidden;
}
ul {
bottom: 1rem;
left: 50%;
Expand Down

0 comments on commit 8efc6ea

Please sign in to comment.