Skip to content
This repository was archived by the owner on Nov 16, 2023. It is now read-only.

Commit ef930f2

Browse files
committed
Add bold style to some key words
1 parent 9f096f4 commit ef930f2

File tree

2 files changed

+12
-8
lines changed

2 files changed

+12
-8
lines changed

src/component/helpOverlay/helpOverlay.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -258,4 +258,8 @@
258258

259259
.element-hide {
260260
visibility: hidden;
261+
}
262+
263+
.bold {
264+
font-weight: bold;
261265
}

src/component/helpOverlay/helpOverlay.js

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -168,32 +168,32 @@ class HelpOverlay extends Component {
168168
<div className={`text-instruction-description`}>
169169
<div className={`paragraph-container ${this.state.step === 0 ? '':'element-none'}`}>
170170
<div className={`paragraph ${this.state.subStep === 0 ? 'paragraph-selected':''}`} style={{transform:"translate(0,-"+this.state.offset[this.state.step][this.state.subStep]+"px"}}>
171-
1. Assembly Area. You can see your device status.
171+
1. <span className="bold">Assembly Area</span>. You can see your device status.
172172
</div>
173173
<div className={`paragraph ${this.state.subStep === 1 ? 'paragraph-selected':''}`} style={{transform:"translate(0,-"+this.state.offset[this.state.step][this.state.subStep]+"px"}}>
174-
2. Coding Area. An online code editor for you to make an app on Raspberry Pi with Node.js
174+
2. <span className="bold">Coding Area</span>. An online code editor for you to make an app on Raspberry Pi with Node.js
175175
</div>
176176
<div className={`paragraph ${this.state.subStep === 2 ? 'paragraph-selected':''}`} style={{transform:"translate(0,-"+this.state.offset[this.state.step][this.state.subStep]+"px"}}>
177-
3. Integrated console window. You can see the output of your app.
177+
3. <span className="bold">Integrated console window</span>. You can see the output of your app.
178178
</div>
179179
</div>
180180
<div className={`paragraph-container ${this.state.step === 1 ? '':'element-none'}`}>
181181
<div className={`paragraph ${this.state.subStep === 0 ? 'paragraph-selected':''}`} style={{transform:"translate(0,-"+this.state.offset[this.state.step][this.state.subStep]+"px"}}>
182-
1. In the <a target="_blank" href="https://portal.azure.com/">Azure portal</a>, click New > Internet of Things > IoT Hub to provision a new IoT hub.
182+
1. In the <a target="_blank" href="https://portal.azure.com/">Azure portal</a>, click <span className="bold">New > Internet of Things > IoT Hub</span> to provision a new IoT hub.
183183
</div>
184184
<div className={`paragraph ${this.state.subStep === 1 ? 'paragraph-selected':''}`} style={{transform:"translate(0,-"+this.state.offset[this.state.step][this.state.subStep]+"px"}}>
185-
2. In the Device Explorer pane, click Add to add a device to your IoT hub.
185+
2. In the <span className="bold">Device Explorer</span> pane, click <span className="bold">Add</span> to add a device to your IoT hub.
186186
</div>
187187
<div className={`paragraph ${this.state.subStep === 2 ? 'paragraph-selected':''}`} style={{transform:"translate(0,-"+this.state.offset[this.state.step][this.state.subStep]+"px"}}>
188-
3. Select the device you just created and copy the primary key of the connection string.
188+
3. Select the device you just created and copy the <span className="bold">primary key of the connection string</span>.
189189
</div>
190190
</div>
191191
<div className={`paragraph-container ${this.state.step === 2 ? '':'element-none'}`}>
192192
<div className={`paragraph ${this.state.subStep === 0 ? 'paragraph-selected':''}`} style={{transform:"translate(0,-"+this.state.offset[this.state.step][this.state.subStep]+"px"}}>
193-
1. Replace the placeholder in Line 15 with the Azure IoT hub device connection string.
193+
1. Replace the placeholder in <span className="bold">Line 15</span> with the Azure IoT hub <span className="bold">device connection string</span>.
194194
</div>
195195
<div className={`paragraph ${this.state.subStep === 1 ? 'paragraph-selected':''}`} style={{transform:"translate(0,-"+this.state.offset[this.state.step][this.state.subStep]+"px"}}>
196-
2. Click Run button or type "npm start" in the console window to run the application.
196+
2. Click <span className="bold">Run</span> button or type "npm start" in the console window to run the application.
197197
</div>
198198
</div>
199199
<div className={`paragraph-scrollbar`} >

0 commit comments

Comments
 (0)