Skip to content

Commit

Permalink
feat: align table row to middle
Browse files Browse the repository at this point in the history
  • Loading branch information
pirhoo committed Sep 4, 2024
1 parent 26b3160 commit f21e4ac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/components/PageTable/PageTableTr.vue
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ const classList = computed(() => {
.page-table-tr {
border: none;
border-left: 1px solid transparent;
vertical-align: middle;
&__select {
display: none;
Expand Down
2 changes: 1 addition & 1 deletion src/components/Project/ProjectRow/ProjectRowLabel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ defineProps({

<template>
<td class="project-row-label">
<div class="d-flex gap-3 align-items-start">
<div class="d-flex gap-3 align-items-middle">
<project-row-thumbnail :project="project" rounded class="flex-shrink-0" />
<project-label :project="project" hide-thumbnail class="fw-medium" />
</div>
Expand Down

0 comments on commit f21e4ac

Please sign in to comment.