Skip to content

Commit fcf89a0

Browse files
committed
fix(FilesTable Styles): change alignment cells
1 parent a6ab863 commit fcf89a0

3 files changed

Lines changed: 4 additions & 5 deletions

File tree

package-lock.json

Lines changed: 0 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/design-system/src/lib/assets/styles/bootstrap-customized.scss

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,6 @@ $form-label-font-weight: $dv-font-weight-bold;
6161

6262

6363
// Table
64-
$table-cell-vertical-align: middle;
65-
6664
@import "bootstrap/scss/tables";
6765

6866

src/sections/dataset/dataset-files/files-table/FilesTable.tsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,10 @@ export function getCellStyle(cellId: string) {
4646
const statusCellId = 'status'
4747
const infoCellId = 'info'
4848

49+
if (cellId == 'select') {
50+
return { verticalAlign: 'middle' }
51+
}
52+
4953
if (cellId == statusCellId) {
5054
return { borderWidth: '0 1px 0 0' }
5155
}

0 commit comments

Comments
 (0)