Skip to content
Snippets Groups Projects
Commit 2c227447 authored by Дмитрий Малюгин's avatar Дмитрий Малюгин :clock4:
Browse files

fix: gap in Table

parent 097eb47e
No related branches found
No related tags found
1 merge request!3Table (partially), Checkbox, Tag, Select and Knob
......@@ -87,7 +87,6 @@ const tableColumns: ITableColumn[] = [
{
name: 'Name',
type: 'text',
sortable: true,
},
{
name: 'Age',
......
......@@ -176,7 +176,7 @@ export const Full: Story = {
value: 'Football',
},
{
value: 'Canada',
value: 'Canadaaaaaaaaaaaa',
},
],
[
......
......@@ -23,7 +23,7 @@ const isRegisterSensitive = ref<boolean>(false);
watch(props.columns, () => (columns.value = props.columns));
const initGap = computed(() => calcGap(props.gap ?? '0px', props.fontSize));
const initGap = computed(() => calcGap(props.gap ?? '5px', props.fontSize));
const additionalHeightFromSize = computed(() => calcAdditionalHeight(props.size, props.fontSize));
const themeColor = computed(() => convertThemeToColor(props.theme, props.darknessTheme));
const color = computed(() =>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment