Skip to content

Commit 05e55b4

Browse files
committed
UI Fixes
1 parent 9212907 commit 05e55b4

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

web-app/admin/src/app/admin/admin-users/user-details/user-details.component.scss

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@
7474
flex: 0 1 auto;
7575
max-height: calc(50% - 0.375rem);
7676
display: flex;
77-
overflow: auto;
7877
}
7978
}
8079

@@ -463,7 +462,6 @@
463462
display: flex;
464463
flex-direction: column;
465464
min-height: 200px;
466-
overflow: auto;
467465

468466
.danger-zone-title {
469467
font-size: 1.125rem;

web-app/admin/src/app/authentication/signin-modal/signin-modal.component.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
:host {
22
display: block;
3+
overflow: hidden;
34
}
45

56
.mat-dialog-container {
@@ -8,13 +9,15 @@
89
overflow: hidden;
910
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25), 0 8px 16px rgba(0, 0, 0, 0.15);
1011
background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
12+
overflow: hidden;
1113
}
1214

1315
.modal-header {
1416
padding: 20px 28px;
1517
border-bottom: 1px solid #e0e0e0;
1618
background: linear-gradient(135deg, #1e88e5, #1289ff);
1719
color: white;
20+
overflow: hidden;
1821
}
1922

2023
.modal-title {
@@ -27,6 +30,7 @@
2730
.modal-body {
2831
padding: 32px 28px;
2932
margin: 0 auto;
33+
overflow: hidden;
3034
}
3135

3236
.modal-header::after {

web-app/admin/src/app/services/auth-buffer.interceptor.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,8 @@ export class AuthBufferInterceptor implements HttpInterceptor {
5050
this.apiService.getApi().subscribe({
5151
next: (api) => {
5252
const ref = this.dialog.open(SigninModalComponent, {
53-
width: '600px',
53+
width: 'auto',
54+
height: 'auto',
5455
disableClose: true,
5556
autoFocus: false,
5657
data: { api }

0 commit comments

Comments
 (0)