fix double scrollbars

This commit is contained in:
Vicki League 2024-04-24 16:43:10 -04:00
parent 7a5a037ad4
commit bb4064fbaa
No known key found for this signature in database
GPG Key ID: 6A900B42463EAC13
2 changed files with 2 additions and 2 deletions

View File

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

View File

@ -5,7 +5,7 @@ import { Component } from "@angular/core";
templateUrl: "popup-page.component.html",
standalone: true,
host: {
class: "tw-h-full tw-flex tw-flex-col tw-flex-1 tw-overflow-y-scroll",
class: "tw-h-full tw-flex tw-flex-col tw-flex-1 tw-overflow-y-auto",
},
})
export class PopupPageComponent {}