Skip to content

Commit

Permalink
fix(table): reduce border width
Browse files Browse the repository at this point in the history
  • Loading branch information
brentswisher committed Jan 28, 2025
1 parent a33be04 commit cfcc784
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
:host {
outline: 1px solid var(--pharos-table-body-color-border, var(--pharos-color-ui-30));
border: 1px solid var(--pharos-table-body-color-border, var(--pharos-color-ui-30));
padding: var(--pharos-spacing-1-x);
border-collapse: collapse;
display: table-cell;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
:host {
display: table-row;
// gap: 10px;
align-items: center;
}
4 changes: 1 addition & 3 deletions packages/pharos/src/components/table/pharos-table.scss
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,10 @@
}

.table-header__cell {
display: table-cell;
border: 1px solid var(--pharos-table-header-color-border, var(--pharos-color-ui-30));
padding: var(--pharos-spacing-1-x);

display: table-cell;
text-align: center;
outline: 1px solid var(--pharos-table-header-color-border, var(--pharos-color-ui-30));
background-color: var(--pharos-table-header-color-background, var(--pharos-color-ui-20));
}

Expand Down

0 comments on commit cfcc784

Please sign in to comment.