Skip to content

Commit

Permalink
Merge branch 'release' into chore/ctl1
Browse files Browse the repository at this point in the history
  • Loading branch information
sharat87 authored Nov 13, 2024
2 parents 251e726 + d90faa2 commit 98261ee
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .github/config.json

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ const getSizes = (size: ButtonSizes, isIconButton?: boolean) => {
? "var(--ads-v2-spaces-2)"
: "var(--ads-v2-spaces-2) var(--ads-v2-spaces-3)"};
--button-gap: var(--ads-v2-spaces-2);
--button-min-width: 60px;
`,
md: css`
--button-font-weight: 600;
Expand All @@ -37,6 +38,7 @@ const getSizes = (size: ButtonSizes, isIconButton?: boolean) => {
? "var(--ads-v2-spaces-3)"
: "var(--ads-v2-spaces-3) var(--ads-v2-spaces-4)"};
--button-gap: var(--ads-v2-spaces-3);
--button-min-width: 80px;
`,
};

Expand Down Expand Up @@ -175,6 +177,8 @@ export const ButtonContent = styled.div<{
box-sizing: border-box;
padding: var(--button-padding);
border-radius: inherit;
min-width: ${({ isIconButton }) =>
isIconButton ? "unset" : "var(--button-min-width)"};
& > .${ButtonContentChildrenClassName} {
display: flex;
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 4 additions & 10 deletions app/client/src/assets/icons/menu/js-function.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions app/client/src/ce/pages/Applications/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -318,6 +318,7 @@ export function LeftPaneSection(props: {
<Button
data-testid="t--workspace-new-workspace-auto-create"
isDisabled={props.isFetchingWorkspaces}
isIconButton
kind="tertiary"
onClick={createNewWorkspace}
startIcon="add-line"
Expand Down

0 comments on commit 98261ee

Please sign in to comment.