Skip to content

Commit

Permalink
fix: popup being cut if the height of it is small
Browse files Browse the repository at this point in the history
  • Loading branch information
akalogerakisunicorn committed Jan 17, 2025
1 parent bfd6eb1 commit c2189dc
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/popup/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,6 @@ export default defineComponent({
position: relative;
display: flex;
justify-content: center;
align-items: center;
width: 100%;
height: 100%;
Expand All @@ -340,7 +339,7 @@ export default defineComponent({
position: relative;
margin: 0 auto;
width: 100%;
height: 100%;
height: 100vh;
border-radius: var(--screen-border-radius);
color: $color-white;
background-color: var(--screen-bg-color);
Expand Down

0 comments on commit c2189dc

Please sign in to comment.