Prevent welcome resume list overflow
This commit is contained in:
@@ -362,7 +362,7 @@
|
||||
|
||||
/* Panel component utilities */
|
||||
.panel {
|
||||
@apply rounded-lg shadow-sm border overflow-hidden;
|
||||
@apply rounded-lg shadow-sm border overflow-hidden min-w-0;
|
||||
background-color: var(--surface-base);
|
||||
border-color: var(--border-base);
|
||||
color: var(--text-primary);
|
||||
@@ -415,7 +415,8 @@
|
||||
}
|
||||
|
||||
.panel-list {
|
||||
@apply max-h-[400px] overflow-y-auto;
|
||||
@apply max-h-[400px] overflow-y-auto w-full min-w-0;
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
.panel-list--fill {
|
||||
@@ -438,7 +439,7 @@
|
||||
}
|
||||
|
||||
.panel-list-item-content {
|
||||
@apply flex-1 text-left px-4 py-3 flex items-center justify-between gap-3 outline-none transition-colors w-full;
|
||||
@apply flex-1 text-left px-4 py-3 flex items-center justify-between gap-3 outline-none transition-colors w-full min-w-0;
|
||||
}
|
||||
|
||||
.panel-list-item-content:hover {
|
||||
|
||||
Reference in New Issue
Block a user