web: fix notification drawer scrolling (#6675)

Signed-off-by: Jens Langhammer <jens@goauthentik.io>
This commit is contained in:
Jens L 2023-08-30 00:07:36 +02:00 committed by GitHub
parent d291d16aac
commit ce0e1c1ef9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 0 deletions

View File

@ -38,6 +38,9 @@ export class APIDrawer extends AKElement {
white-space: pre-wrap;
font-family: monospace;
}
.pf-c-notification-drawer__body {
overflow-x: hidden;
}
`,
];
}

View File

@ -34,6 +34,7 @@ export class NotificationDrawer extends AKElement {
}
.pf-c-notification-drawer__body {
flex-grow: 1;
overflow-x: hidden;
}
.pf-c-notification-drawer__header {
height: 114px;

View File

@ -45,6 +45,9 @@ export class FlowInspector extends AKElement {
overflow-x: hidden;
white-space: break-spaces;
}
.pf-c-notification-drawer__body {
overflow-x: hidden;
}
`,
];
}