File tree Expand file tree Collapse file tree 4 files changed +9
-5
lines changed Expand file tree Collapse file tree 4 files changed +9
-5
lines changed Original file line number Diff line number Diff line change 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" : {
Original file line number Diff line number Diff line change @@ -44,6 +44,7 @@ export const TextContainer = styled.div`
4444
4545export 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
5556export 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
7072export const SelectContainer = styled . div `
71- width: 320px ;
73+ width: 560px ;
7274` ;
7375
7476export const Footer = styled . footer `
Original file line number Diff line number Diff 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 >
You can’t perform that action at this time.
0 commit comments