+5
frontend/src/routes/OAuthConsent.svelte
+5
frontend/src/routes/OAuthConsent.svelte
···
508
508
margin-bottom: var(--space-2);
509
509
cursor: pointer;
510
510
transition: border-color var(--transition-fast);
511
+
overflow: hidden;
511
512
}
512
513
513
514
.scope-item:hover:not(.required) {
···
532
533
533
534
.scope-info {
534
535
flex: 1;
536
+
min-width: 0;
535
537
display: flex;
536
538
flex-direction: column;
537
539
gap: 2px;
540
+
overflow: hidden;
538
541
}
539
542
540
543
.scope-name {
541
544
font-weight: var(--font-medium);
542
545
color: var(--text-primary);
546
+
word-break: break-all;
543
547
}
544
548
545
549
.scope-description {
546
550
font-size: var(--text-sm);
547
551
color: var(--text-secondary);
552
+
word-break: break-all;
548
553
}
549
554
550
555
.required-badge {