Skip to content

Commit

Permalink
Have Perfetto Help not sized to viewport (#126)
Browse files Browse the repository at this point in the history
  • Loading branch information
ALevansSamsung authored Oct 28, 2024
1 parent 2ac7c21 commit 5812c16
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions ui/src/assets/modal.scss
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,8 @@
backdrop-filter: blur(2px);
animation: modalFadeIn 0.25s var(--anim-easing);
animation-fill-mode: both;
width: 100%;
height: 100%;

&.modal-fadeout {
animation: modalFadeOut 0.25s var(--anim-easing);
Expand All @@ -62,11 +64,11 @@
background-color: var(--main-background-color);
color: var(--main-foreground-color);
margin: auto;
min-width: 25vw;
min-height: 10vh;
min-width: 25%;
min-height: 10%;
padding: 30px;
max-width: 90vw;
max-height: 90vh;
max-width: 90%;
max-height: 90%;
border-radius: $pf-border-radius;
overflow-y: auto;
top: 50%;
Expand Down

0 comments on commit 5812c16

Please sign in to comment.