Skip to content

Commit

Permalink
fix(table): set text align default to left and add spacing for buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
hirsch88 committed Apr 13, 2022
1 parent 23606e1 commit 015a81e
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions packages/components/src/components/bal-table/bal-table.scss
Original file line number Diff line number Diff line change
Expand Up @@ -33,11 +33,16 @@ table.table {
}
}

th:not([align]) {
text-align: left;
}

td,
th {
font-size: $size-normal;
font-family: $family-primary;
vertical-align: middle;
text-align: left;

.bal-checkbox {
padding: 0;
Expand All @@ -52,6 +57,14 @@ table.table {
td.has-buttons {
padding: 2px;

bal-button {
margin-right: 4px;

&:last-child {
margin-right: 0px;
}
}

.buttons {
justify-content: flex-end;
padding: 3px;
Expand Down

0 comments on commit 015a81e

Please sign in to comment.