diff --git a/app/client/src/ce/pages/Applications/index.tsx b/app/client/src/ce/pages/Applications/index.tsx index 5c3e54af7f..edd2b60af2 100644 --- a/app/client/src/ce/pages/Applications/index.tsx +++ b/app/client/src/ce/pages/Applications/index.tsx @@ -253,9 +253,6 @@ const LeftPaneDataSection = styled.div<{ isBannerVisible?: boolean }>` height: calc(100vh - ${(props) => 48 + (props.isBannerVisible ? 48 : 0)}px); display: flex; flex-direction: column; - button { - height: 34px !important; - } `; // Tags for some reason take all available space. diff --git a/app/client/src/components/editorComponents/Debugger/index.tsx b/app/client/src/components/editorComponents/Debugger/index.tsx index 036a3d4a4e..54dcb5f0f3 100644 --- a/app/client/src/components/editorComponents/Debugger/index.tsx +++ b/app/client/src/components/editorComponents/Debugger/index.tsx @@ -3,8 +3,9 @@ import { useDispatch, useSelector } from "react-redux"; import DebuggerTabs from "./DebuggerTabs"; import { setErrorCount } from "actions/debuggerActions"; import { getMessageCount, showDebuggerFlag } from "selectors/debuggerSelectors"; -import { Button, Tooltip } from "@appsmith/ads"; +import { Tooltip } from "@appsmith/ads"; import useDebuggerTriggerClick from "./hooks/useDebuggerTriggerClick"; +import * as Styled from "./styles"; function Debugger() { // Debugger render flag @@ -33,7 +34,7 @@ export function DebuggerTrigger() { return ( - + ); } diff --git a/app/client/src/components/editorComponents/Debugger/styles.ts b/app/client/src/components/editorComponents/Debugger/styles.ts new file mode 100644 index 0000000000..52721305f4 --- /dev/null +++ b/app/client/src/components/editorComponents/Debugger/styles.ts @@ -0,0 +1,10 @@ +import { Button } from "@appsmith/ads"; +import styled from "styled-components"; + +export const DebuggerTriggerButton = styled(Button)` + /* Override the min-width of the button for debugger trigger only */ + + .ads-v2-button__content { + min-width: unset; + } +`; diff --git a/app/client/src/pages/Editor/APIEditor/CommonEditorForm.tsx b/app/client/src/pages/Editor/APIEditor/CommonEditorForm.tsx index a024ab6b38..20083d77bc 100644 --- a/app/client/src/pages/Editor/APIEditor/CommonEditorForm.tsx +++ b/app/client/src/pages/Editor/APIEditor/CommonEditorForm.tsx @@ -65,11 +65,6 @@ const MainConfiguration = styled.div` .api-info-row { padding-top: var(--ads-v2-spaces-5); - - .ads-v2-select > .rc-select-selector { - min-width: 110px; - width: 110px; - } } .form-row-header {