Skip to content

Commit 88b01b9

Browse files
Merge pull request #1168 from digma-ai/fix/launcher
Update Dimga Plugin launcher styles
2 parents 2c5fa0b + 6b585d8 commit 88b01b9

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "digma-ui",
3-
"version": "2.1.2",
3+
"version": "2.1.3",
44
"description": "Digma UI",
55
"main": "dist/index.js",
66
"scripts": {

src/components/IdeLauncher/styles.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,7 @@ export const TextContainer = styled.div`
4444

4545
export const Title = styled.h1`
4646
color: ${({ theme }) => theme.colors.v3.text.primary};
47+
margin: 0;
4748
font-size: 40px;
4849
font-weight: 500;
4950
@@ -54,6 +55,7 @@ export const Title = styled.h1`
5455

5556
export const Description = styled.p`
5657
color: ${({ theme }) => theme.colors.v3.text.tertiary};
58+
margin: 0;
5759
font-size: 24px;
5860
font-weight: 400;
5961
line-height: 150%;
@@ -68,7 +70,7 @@ export const EmphasizedText = styled.span`
6870
`;
6971

7072
export const SelectContainer = styled.div`
71-
width: 320px;
73+
width: 560px;
7274
`;
7375

7476
export const Footer = styled.footer`

src/components/common/v3/Select/index.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,9 @@ export const Select = ({
169169
</s.ButtonIconContainer>
170170
)}
171171
{isString(placeholder) && (
172-
<s.ButtonLabel $isActive={isActive}>{placeholder}</s.ButtonLabel>
172+
<Tooltip title={placeholder} isDisabled={placeholder.length === 0}>
173+
<s.ButtonLabel $isActive={isActive}>{placeholder}</s.ButtonLabel>
174+
</Tooltip>
173175
)}
174176
{multiselect && isSelectedStateEnabled && selectedValues.length > 0 && (
175177
<s.Number>{selectedValues.length}</s.Number>

0 commit comments

Comments
 (0)