Skip to content

Commit

Permalink
1,330th Commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Shyam-Chen committed Jan 25, 2024
1 parent de4b24c commit f106798
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions ui/src/components/table/Cell.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@

<style lang="scss" scoped>
.Cell {
@apply px-4 py-0 align-middle whitespace-nowrap;
@apply h-38px px-4 py-0 align-middle whitespace-nowrap;
> :deep(div) {
@apply inline-flex items-center min-h-38px;
@apply inline-flex items-center h-full;
}
}
</style>
3 changes: 2 additions & 1 deletion ui/src/components/table/Column.vue
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,13 @@

<style lang="scss" scoped>
.Column {
@apply h-38px;
@apply px-4 py-0 text-zinc-600 dark:text-zinc-400 bg-gray-200 dark:bg-gray-700;
@apply border border-zinc-100 dark:border-zinc-600 border-l-0 border-r-0;
@apply align-middle whitespace-nowrap font-semibold text-left;
> :deep(div) {
@apply inline-flex items-center min-h-38px;
@apply inline-flex items-center h-full;
}
}
</style>

0 comments on commit f106798

Please sign in to comment.