Skip to content

Commit 9fdd1e2

Browse files
authored
Merge pull request #21 from FlutterFlow/pooja/fix-images
Go back to Markdown Images
2 parents 939a316 + eb9ad5f commit 9fdd1e2

File tree

5 files changed

+15
-8
lines changed

5 files changed

+15
-8
lines changed

docs/intro/clone-project.png

491 KB
Loading

docs/intro/quickstart.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ The steps to build the app are as follows:
3333

3434
To kick off your project, the first step is to [create a new project](#). However, to make things easier, we've already created a starter app for you. Simply open [this link](https://app.flutterflow.io/project/f-f-quick-start-app-umu392), click the '**Clone**' button, and the project will be instantly added to your account.
3535

36-
<img src="../../static/img/clone-project.png" alt="clone-project.png" />
36+
![clone-project.png](clone-project.png)
3737

3838
After cloning the project, you’ll see a page with product images and descriptions. You’ll add a feature that allows users to update the product quantity.
3939

40-
<img src="../../static/img/zero-to-final.png" alt="zero-to-final.png" />
40+
![zero-to-final.png](..%2F..%2Fstatic%2Fimg%2Fzero-to-final.png)
4141

4242
## 2. Building UI {#build-ui}
4343

docs/troubleshooting/push-notifications.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ toc_max_heading_level: 5
99
Push notifications play a vital role in mobile apps, letting you connect with your audience and update them on key developments. But, there are instances when push notifications fail to deliver. In this guide, we'll explore some typical problems that hinder push notifications in FlutterFlow and offer detailed instructions on how to fix them.
1010

1111

12-
<img src="./push-notification-assets/push-notifications-ff.png" alt="Firebase Console" />
12+
![push-notifications-ff.png](push-notification-assets%2Fpush-notifications-ff.png)
1313

1414
:::tip Using CodeMagic? [Skip ahead!](https://mdxjs.com/playground/)
1515

@@ -20,7 +20,7 @@ Push notifications play a vital role in mobile apps, letting you connect with yo
2020
#### 1. Ensure your subscription status hasn't changed.
2121
Head to the [Firebase Console](https://console.firebase.google.com/) and select Project Settings > Usage & Billing > Details & Settings.
2222

23-
<img src="./push-notification-assets/firebase-console.png" alt="Firebase Console" />
23+
![firebase-console.png](push-notification-assets%2Ffirebase-console.png)
2424

2525
If you see Spark listed, you will need to select Modify Plan and upgrade to a Blaze Plan.
2626

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
"private": true,
55
"scripts": {
66
"docusaurus": "docusaurus",
7-
"start": "node scripts/convertImages.js && docusaurus start",
8-
"build": "node scripts/convertImages.js && docusaurus build",
7+
"start": "docusaurus start",
8+
"build": "docusaurus build",
99
"swizzle": "docusaurus swizzle",
1010
"deploy": "docusaurus deploy",
1111
"clear": "docusaurus clear",

src/css/custom.css

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,12 +85,19 @@ h2 {
8585
}
8686

8787
h3 {
88-
color:var(--graytext);
88+
color:var(--black-700);
8989
font-size: 20px;
90-
font-weight: 200;
90+
font-weight: 700;
9191

9292
}
9393

94+
h4 {
95+
color:var(--black-700);
96+
font-size: 18px;
97+
font-weight: 500;
98+
99+
}
100+
94101

95102
p {
96103
font-size: 16px;

0 commit comments

Comments
 (0)