From 9a50bb8c0d758ff59a49abee8b27454d4e7db951 Mon Sep 17 00:00:00 2001 From: momin-riyadh Date: Sat, 3 Oct 2020 20:23:39 +0600 Subject: [PATCH 1/2] mismatched closing dev has been removed --- 02_Day_Introduction_to_React/02_introduction_to_react.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/02_Day_Introduction_to_React/02_introduction_to_react.md b/02_Day_Introduction_to_React/02_introduction_to_react.md index 04ba802..323b381 100644 --- a/02_Day_Introduction_to_React/02_introduction_to_react.md +++ b/02_Day_Introduction_to_React/02_introduction_to_react.md @@ -13,7 +13,7 @@ - + [<< Day 1](../readMe.md) | [Day 3 >>](../03_Day_Booleans_operators_date/03_booleans_operators_date.md) From a7141d5c3388390dbc1c5535d981e2713fda0ff1 Mon Sep 17 00:00:00 2001 From: momin-riyadh Date: Sat, 3 Oct 2020 20:46:18 +0600 Subject: [PATCH 2/2] some overwritten property has been simplyfied --- .../02_introduction_to_react.md | 10 ++-------- 1 file changed, 2 insertions(+), 8 deletions(-) diff --git a/02_Day_Introduction_to_React/02_introduction_to_react.md b/02_Day_Introduction_to_React/02_introduction_to_react.md index 323b381..082ffb9 100644 --- a/02_Day_Introduction_to_React/02_introduction_to_react.md +++ b/02_Day_Introduction_to_React/02_introduction_to_react.md @@ -708,7 +708,6 @@ Instead of style object using regular styling method is more easier than the abo header { background-color: #61dbfb; - padding: 25; padding: 10px; } @@ -988,13 +987,11 @@ Now, let us put everything together. Here in the example below, the data is inje header { background-color: #61dbfb; - padding: 25; padding: 10px; } main { - padding: 10px; - padding-bottom: 60px; + padding: 10px 10px 60px; /* Height of the footer */ } @@ -1200,13 +1197,11 @@ In the following code example, the list is now containing list elements and form header { background-color: #61dbfb; - padding: 25; padding: 10px; } main { - padding: 10px; - padding-bottom: 60px; + padding: 10px 10px 60px; /* Height of the footer */ } @@ -1407,7 +1402,6 @@ As you can see above, now the lists are formatted properly but there is warning header { background-color: #61dbfb; - padding: 25; padding: 10px; }