1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-10-06 05:28:51 +02:00

[CL-302] respect bottom padding in scrollable popup-layout (#9514)

This commit is contained in:
Will Martin 2024-06-05 17:17:24 -04:00 committed by GitHub
parent ce69b25d54
commit 472a7a9d4d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,6 +1,6 @@
<ng-content select="[slot=header]"></ng-content>
<main class="tw-bg-background-alt tw-p-3 tw-flex-1 tw-overflow-y-auto tw-h-full">
<div class="tw-max-w-screen-sm tw-mx-auto tw-h-full">
<main class="tw-bg-background-alt tw-flex-1 tw-overflow-y-auto tw-h-full">
<div class="tw-max-w-screen-sm tw-mx-auto tw-p-3 tw-overflow-y-auto tw-h-full">
<ng-content></ng-content>
</div>
</main>