fix scrollbar

This commit is contained in:
Julian Freeman
2026-04-16 21:58:50 -04:00
parent 189d7c02f5
commit 3931382f9d
4 changed files with 8 additions and 4 deletions

View File

@@ -156,7 +156,7 @@ function hasBookmarkPath(profile: ModalProfile): profile is BookmarkAssociatedPr
} }
.modal-table-header { .modal-table-header {
padding: 10px 14px; padding: 10px 24px 10px 14px;
border-bottom: 1px solid rgba(148, 163, 184, 0.14); border-bottom: 1px solid rgba(148, 163, 184, 0.14);
background: rgba(248, 250, 252, 0.94); background: rgba(248, 250, 252, 0.94);
backdrop-filter: blur(12px); backdrop-filter: blur(12px);
@@ -166,6 +166,7 @@ function hasBookmarkPath(profile: ModalProfile): profile is BookmarkAssociatedPr
.modal-table-body { .modal-table-body {
min-height: 0; min-height: 0;
overflow: auto; overflow: auto;
scrollbar-gutter: stable;
} }
.header-cell { .header-cell {

View File

@@ -63,6 +63,7 @@ const emit = defineEmits<{
.data-table-body { .data-table-body {
min-height: 0; min-height: 0;
overflow: auto; overflow: auto;
scrollbar-gutter: stable;
} }
.bookmarks-grid { .bookmarks-grid {
@@ -76,7 +77,7 @@ const emit = defineEmits<{
position: sticky; position: sticky;
top: 0; top: 0;
z-index: 2; z-index: 2;
padding: 10px 14px; padding: 10px 24px 10px 14px;
border-bottom: 1px solid rgba(148, 163, 184, 0.14); border-bottom: 1px solid rgba(148, 163, 184, 0.14);
background: rgba(248, 250, 252, 0.94); background: rgba(248, 250, 252, 0.94);
backdrop-filter: blur(12px); backdrop-filter: blur(12px);

View File

@@ -69,6 +69,7 @@ const emit = defineEmits<{
.data-table-body { .data-table-body {
min-height: 0; min-height: 0;
overflow: auto; overflow: auto;
scrollbar-gutter: stable;
} }
.extensions-grid { .extensions-grid {
@@ -82,7 +83,7 @@ const emit = defineEmits<{
position: sticky; position: sticky;
top: 0; top: 0;
z-index: 2; z-index: 2;
padding: 10px 14px; padding: 10px 24px 10px 14px;
border-bottom: 1px solid rgba(148, 163, 184, 0.14); border-bottom: 1px solid rgba(148, 163, 184, 0.14);
background: rgba(248, 250, 252, 0.94); background: rgba(248, 250, 252, 0.94);
backdrop-filter: blur(12px); backdrop-filter: blur(12px);

View File

@@ -91,6 +91,7 @@ const emit = defineEmits<{
.data-table-body { .data-table-body {
min-height: 0; min-height: 0;
overflow: auto; overflow: auto;
scrollbar-gutter: stable;
} }
.profiles-grid { .profiles-grid {
@@ -104,7 +105,7 @@ const emit = defineEmits<{
position: sticky; position: sticky;
top: 0; top: 0;
z-index: 2; z-index: 2;
padding: 10px 14px; padding: 10px 24px 10px 14px;
border-bottom: 1px solid rgba(148, 163, 184, 0.14); border-bottom: 1px solid rgba(148, 163, 184, 0.14);
background: rgba(248, 250, 252, 0.94); background: rgba(248, 250, 252, 0.94);
backdrop-filter: blur(12px); backdrop-filter: blur(12px);