Update column width button sizes

This commit is contained in:
Andrew Kingston 2023-04-23 12:18:43 +01:00
parent 0eb66e7bc6
commit 2972af6711
2 changed files with 3 additions and 3 deletions

View File

@ -1,10 +1,10 @@
<script>
import { getContext } from "svelte"
import { ActionButton, Popover } from "@budibase/bbui"
import { DefaultColumnWidth, MinColumnWidth } from "../lib/constants"
import { DefaultColumnWidth } from "../lib/constants"
const { stickyColumn, columns } = getContext("grid")
const smallSize = MinColumnWidth
const smallSize = 120
const mediumSize = DefaultColumnWidth
const largeSize = DefaultColumnWidth * 1.5

View File

@ -4,7 +4,7 @@ export const MaxCellRenderWidthOverflow = 200
export const ScrollBarSize = 8
export const GutterWidth = 72
export const DefaultColumnWidth = 200
export const MinColumnWidth = 100
export const MinColumnWidth = 80
export const SmallRowHeight = 36
export const MediumRowHeight = 64
export const LargeRowHeight = 92