We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 579042c commit 6c27189Copy full SHA for 6c27189
1 file changed
extensions/ql-vscode/src/view/common/DataGrid.tsx
@@ -13,7 +13,6 @@ import { styled } from "styled-components";
13
const StyledDataGrid = styled.div<{ $gridTemplateColumns: string | number }>`
14
display: grid;
15
grid-template-columns: ${(props) => props.$gridTemplateColumns};
16
- padding: calc((var(--design-unit) / 4) * 1px) 0;
17
box-sizing: border-box;
18
width: 100%;
19
background: transparent;
@@ -54,7 +53,7 @@ const StyledDataGridCell = styled.div<{
54
53
}>`
55
grid-row: ${(props) => props.$gridRow};
56
grid-column: ${(props) => props.$gridColumn};
57
- padding: calc(var(--design-unit) * 1px) calc(var(--design-unit) * 3px);
+ padding: 4px 12px;
58
`;
59
60
interface DataGridCellProps {
0 commit comments