Skip to content

Commit

Permalink
fix(nc-gui): reduce height of field icon from expanded form
Browse files Browse the repository at this point in the history
  • Loading branch information
rameshmane7218 committed May 10, 2024
1 parent 76d6afb commit 7727ab6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -280,7 +280,7 @@ watch(commentsWrapperEl, () => {
:loading="isSaving"
:disabled="!isSaving && !comment.length"
:icon-only="isSaving"
class="!disabled:bg-gray-100"
class="!disabled:bg-gray-100 !shadow-none"
@click="saveComment"
>
<GeneralIcon v-if="!isSaving" icon="send" />
Expand Down
5 changes: 5 additions & 0 deletions packages/nc-gui/components/smartsheet/expanded-form/index.vue
Original file line number Diff line number Diff line change
Expand Up @@ -996,6 +996,11 @@ export default {

.nc-expanded-cell-header {
@apply w-full text-gray-500 !font-weight-500 !text-sm xs:(text-gray-600 mb-2 !text-small) pr-3;

svg.nc-cell-icon,
svg.nc-virtual-cell-icon {
@apply !w-3.5 !h-3.5;
}
}

.nc-expanded-cell-header > :nth-child(2) {
Expand Down

1 comment on commit 7727ab6

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The PR changes have been deployed. Please run the following command to verify:

docker run -d -p 8888:8080 nocodb/nocodb-timely:0.205.0-pr-8452-20240510-1540

Please sign in to comment.