@@ -6,7 +6,6 @@ export const connectionPanelContainer = css`
66 box-shadow : 0px 2px 4px 0px # 091E4240 ;
77 display : flex;
88 flex-direction : column;
9- max-height : 164px ;
109 padding : ${ token ( 'space.300' ) } ;
1110 margin : ${ token ( 'space.400' ) } auto ${ token ( 'space.400' ) } ${ token ( 'space.025' ) } ;
1211` ;
@@ -15,7 +14,7 @@ export const connectionPanelTopContainer = css`
1514 border-bottom : 1px solid # f4f3f6 ;
1615 display : flex;
1716 justify-content : space-between;
18- padding-bottom : ${ token ( 'space.300 ' ) } ;
17+ padding-bottom : ${ token ( 'space.200 ' ) } ;
1918` ;
2019
2120export const connectionPanelHeaderContainer = css `
@@ -41,5 +40,64 @@ export const ipAddressStyle = css`
4140` ;
4241
4342export const connectionPanelMainContainer = css `
44- margin-top : ${ token ( 'space.200' , '16px' ) } ;
43+ margin-top : ${ token ( 'space.200' ) } ;
44+
45+ # connection-panel-tabs-0 {
46+ padding-left : ${ token ( 'space.0' ) } ;
47+
48+ ::after {
49+ margin-left : ${ token ( 'space.negative.400' ) } ;
50+ }
51+ }
52+
53+ [role = tablist ] {
54+ & : first-of-type {
55+ ::before {
56+ margin-left : ${ token ( 'space.negative.100' ) } ;
57+ }
58+ }
59+ }
60+ ` ;
61+
62+ export const connectionPanelMainTabs = css `
63+ align-items : center;
64+ border-radius : 3px ;
65+ display : flex;
66+ flex-direction : column;
67+ justify-content : center;
68+ margin : ${ token ( 'space.200' ) } auto ${ token ( 'space.100' ) } ;
69+ padding : ${ token ( 'space.400' ) } ;
70+ width : 100% ;
71+ ` ;
72+
73+ export const notConnectedStateContainer = css `
74+ margin : 0 auto;
75+ max-width : 420px ;
76+ text-align : center;
77+ ` ;
78+
79+ // TODO - delete this temp class
80+ export const notConnectedTempImgPlaceholder = css `
81+ background-color : lightgrey;
82+ border : 1px solid lightgrey;
83+ border-radius : 3px ;
84+ height : 160px ;
85+ margin : auto;
86+ width : 160px ;
87+ ` ;
88+
89+ export const notConnectedStateHeader = css `
90+ font-size : 20px ;
91+ font-weight : 500 ;
92+ margin : ${ token ( 'space.200' ) } auto;
93+ ` ;
94+
95+ export const notConnectedStateParagraph = css `
96+ font-size : 14px ;
97+ line-height : 20px ;
98+ margin-bottom : ${ token ( 'space.400' ) } ;
99+
100+ div {
101+ margin-bottom : ${ token ( 'space.300' ) }
102+ }
45103` ;
0 commit comments