Skip to content

Commit f6a95b4

Browse files
committed
Making the image height a bit larger
1 parent 7b92577 commit f6a95b4

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

css/style.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

index.html

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -60,13 +60,13 @@ <h3 id="what-you-re-building">What you&#39;re building</h3>
6060
<li>Runs cross-platform (iOS and Android).</li>
6161
</ul>
6262
<p>If you follow along to the end, here&#39;s what the finished app will look like on iOS:</p>
63-
<p><img src="images/chapter0/ios/1.png" alt="">
64-
<img src="images/chapter0/ios/2.png" alt="">
65-
<img src="images/chapter0/ios/3.png" alt=""></p>
63+
<p><img src="images/chapter0/ios/1.png" alt="Final look of iOS app 1" style="height: 300px;">
64+
<img src="images/chapter0/ios/2.png" alt="Final look of iOS app 1" style="height: 300px;">
65+
<img src="images/chapter0/ios/3.png" alt="Final look of iOS app 1" style="height: 300px;"></p>
6666
<p>And here&#39;s what the app will look like on Android:</p>
67-
<p><img src="images/chapter0/android/1.png" alt="">
68-
<img src="images/chapter0/android/2.png" alt="">
69-
<img src="images/chapter0/android/3.png" alt=""></p>
67+
<p><img src="images/chapter0/android/1.png" alt="Final look of Android app 1" style="height: 300px;">
68+
<img src="images/chapter0/android/2.png" alt="Final look of Android app 1" style="height: 300px;">
69+
<img src="images/chapter0/android/3.png" alt="Final look of Android app 1" style="height: 300px;"></p>
7070
<h3 id="prerequisites">Prerequisites</h3>
7171
<p>This guide assumes that you have some basic knowledge of JavaScript, CSS, and your development machine’s terminal. More specifically:</p>
7272
<ul>

src/chapters/chapter0.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,15 +34,15 @@ This guide will walk you through building [Groceries](https://github.com/NativeS
3434

3535
If you follow along to the end, here's what the finished app will look like on iOS:
3636

37-
![](images/chapter0/ios/1.png)
38-
![](images/chapter0/ios/2.png)
39-
![](images/chapter0/ios/3.png)
37+
<img src="images/chapter0/ios/1.png" alt="Final look of iOS app 1" style="height: 300px;">
38+
<img src="images/chapter0/ios/2.png" alt="Final look of iOS app 1" style="height: 300px;">
39+
<img src="images/chapter0/ios/3.png" alt="Final look of iOS app 1" style="height: 300px;">
4040

4141
And here's what the app will look like on Android:
4242

43-
![](images/chapter0/android/1.png)
44-
![](images/chapter0/android/2.png)
45-
![](images/chapter0/android/3.png)
43+
<img src="images/chapter0/android/1.png" alt="Final look of Android app 1" style="height: 300px;">
44+
<img src="images/chapter0/android/2.png" alt="Final look of Android app 1" style="height: 300px;">
45+
<img src="images/chapter0/android/3.png" alt="Final look of Android app 1" style="height: 300px;">
4646

4747
### Prerequisites
4848

src/scss/style.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ ol li, ul li{
134134

135135
.chapter img:not(.plain) {
136136
border: 1px solid black;
137-
height: 300px;
137+
height: 450px;
138138
margin-right: 0.2rem;
139139
}
140140

0 commit comments

Comments
 (0)