Skip to content

Commit

Permalink
fix: correct grid styling issue (#4889)
Browse files Browse the repository at this point in the history
  • Loading branch information
anncwb committed Nov 13, 2024
1 parent 5b07947 commit 9ddaba5
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 11 deletions.
8 changes: 4 additions & 4 deletions docs/.vitepress/config/en.mts
Original file line number Diff line number Diff line change
Expand Up @@ -221,9 +221,9 @@ function nav(): DefaultTheme.NavItem[] {
link: '/commercial/community',
text: '👨‍👦‍👦 Community',
},
{
link: '/friend-links/',
text: '🤝 Friend Links',
},
// {
// link: '/friend-links/',
// text: '🤝 Friend Links',
// },
];
}
8 changes: 4 additions & 4 deletions docs/.vitepress/config/zh.mts
Original file line number Diff line number Diff line change
Expand Up @@ -282,10 +282,10 @@ function nav(): DefaultTheme.NavItem[] {
// },
// ],
},
{
link: '/friend-links/',
text: '🤝 友情链接',
},
// {
// link: '/friend-links/',
// text: '🤝 友情链接',
// },
];
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,8 @@
}

.vxe-tools--operate {
@apply ml-3;
margin-right: 0.25rem;
margin-left: 0.75rem;
}

.vxe-table-custom--checkbox-option:hover {
Expand All @@ -93,6 +94,7 @@
}

.vxe-buttons--wrapper:not(:empty),
.vxe-tools--operate:not(:empty),
.vxe-tools--wrapper:not(:empty) {
padding: 0.6em 0;
}
Expand Down
4 changes: 2 additions & 2 deletions packages/effects/plugins/src/vxe-table/use-vxe-grid.vue
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ import { useTableForm } from './init';
import 'vxe-table/styles/cssvar.scss';
import 'vxe-pc-ui/styles/cssvar.scss';
import './theme.css';
import './style.css';
interface Props extends VxeGridProps {
api: ExtendedVxeGridApi;
Expand Down Expand Up @@ -270,7 +270,7 @@ onUnmounted(() => {
ref="gridRef"
:class="
cn(
'p-2',
'p-2 pt-0',
{
'pt-0': showToolbar && !formOptions,
},
Expand Down

0 comments on commit 9ddaba5

Please sign in to comment.