File tree 2 files changed +7
-3
lines changed
Composer/packages/client/src/pages/botProject/runtime-settings 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -38,6 +38,7 @@ import {
38
38
customerLabel ,
39
39
iconStyle ,
40
40
textOr ,
41
+ updateText ,
41
42
} from './style' ;
42
43
43
44
export const RuntimeSettings : React . FC < RouteComponentProps < { projectId : string } > > = ( props ) => {
@@ -215,10 +216,9 @@ export const RuntimeSettings: React.FC<RouteComponentProps<{ projectId: string }
215
216
onRenderLabel = { onRenderLabel }
216
217
/>
217
218
</ div >
218
- < br />
219
219
{ needsUpdate && (
220
220
< div >
221
- < p >
221
+ < p css = { updateText } >
222
222
{ formatMessage (
223
223
'A newer version of the provisioning scripts has been found, and this project can be updated to the latest.'
224
224
) }
Original file line number Diff line number Diff line change @@ -8,7 +8,6 @@ export const runtimeSettingsStyle = css`
8
8
display : flex;
9
9
flex-direction : column;
10
10
box-sizing : border-box;
11
- height : 200px ;
12
11
` ;
13
12
14
13
export const runtimeControls = css `
@@ -71,3 +70,8 @@ export const iconStyle = (disabled) => {
71
70
export const textOr = css `
72
71
font-size : ${ FontSizes . smallPlus } ;
73
72
` ;
73
+
74
+ export const updateText = css `
75
+ font-size : ${ FontSizes . smallPlus } ;
76
+ color : ${ NeutralColors . gray130 } ;
77
+ ` ;
You can’t perform that action at this time.
0 commit comments