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 f94fdb2..9740737 100644 --- a/02_Day_Introduction_to_React/02_introduction_to_react.md +++ b/02_Day_Introduction_to_React/02_introduction_to_react.md @@ -726,8 +726,6 @@ Instead of style object using regular styling method is more easy than the one a } footer { - position: absolute; - bottom: 0; width: 100%; height: 60px; /* Height of the footer */ @@ -1004,8 +1002,6 @@ Now, let us put everything together. Here, in the example below, the data is inj } footer { - position: absolute; - bottom: 0; width: 100%; height: 60px; /* Height of the footer */ @@ -1214,8 +1210,6 @@ In the following code example, the list is now containing list elements and it i } footer { - position: absolute; - bottom: 0; width: 100%; height: 60px; /* Height of the footer */ @@ -1420,8 +1414,6 @@ As you can see above, now the lists are formatted properly, but there is a warni } footer { - position: absolute; - bottom: 0; width: 100%; height: 60px; /* Height of the footer */ diff --git a/03_Day_Setting_Up/03_setting_up_boilerplate/public/index.html b/03_Day_Setting_Up/03_setting_up_boilerplate/public/index.html index 730e078..32d62a6 100644 --- a/03_Day_Setting_Up/03_setting_up_boilerplate/public/index.html +++ b/03_Day_Setting_Up/03_setting_up_boilerplate/public/index.html @@ -77,8 +77,6 @@ } footer { - position: absolute; - bottom: 0; width: 100%; height: 60px; /* Height of the footer */ diff --git a/04_Day_Components/04_components_boilerplate/public/index.html b/04_Day_Components/04_components_boilerplate/public/index.html index 44fa1f3..91726ca 100644 --- a/04_Day_Components/04_components_boilerplate/public/index.html +++ b/04_Day_Components/04_components_boilerplate/public/index.html @@ -14,9 +14,8 @@ 30 Days Of React App -
diff --git a/05_Day_Props/05_props_boilerplate/public/index.html b/05_Day_Props/05_props_boilerplate/public/index.html index 44fa1f3..91726ca 100644 --- a/05_Day_Props/05_props_boilerplate/public/index.html +++ b/05_Day_Props/05_props_boilerplate/public/index.html @@ -14,9 +14,8 @@ 30 Days Of React App -
diff --git a/06_Day_Map_List_Keys/06_map_list_keys_boilerplate/public/index.html b/06_Day_Map_List_Keys/06_map_list_keys_boilerplate/public/index.html index 44fa1f3..91726ca 100644 --- a/06_Day_Map_List_Keys/06_map_list_keys_boilerplate/public/index.html +++ b/06_Day_Map_List_Keys/06_map_list_keys_boilerplate/public/index.html @@ -14,9 +14,8 @@ 30 Days Of React App -
diff --git a/07_Day_Class_Components/07_class_based_components_boilerplate/public/index.html b/07_Day_Class_Components/07_class_based_components_boilerplate/public/index.html index 44fa1f3..91726ca 100644 --- a/07_Day_Class_Components/07_class_based_components_boilerplate/public/index.html +++ b/07_Day_Class_Components/07_class_based_components_boilerplate/public/index.html @@ -14,9 +14,8 @@ 30 Days Of React App -
diff --git a/08_Day_States/08_states_boilerplate/public/index.html b/08_Day_States/08_states_boilerplate/public/index.html index 44fa1f3..91726ca 100644 --- a/08_Day_States/08_states_boilerplate/public/index.html +++ b/08_Day_States/08_states_boilerplate/public/index.html @@ -14,9 +14,8 @@ 30 Days Of React App -
diff --git a/09_Day_Conditional_Rendering/09_conditional_rendering_boilerplate/public/index.html b/09_Day_Conditional_Rendering/09_conditional_rendering_boilerplate/public/index.html index 44fa1f3..91726ca 100644 --- a/09_Day_Conditional_Rendering/09_conditional_rendering_boilerplate/public/index.html +++ b/09_Day_Conditional_Rendering/09_conditional_rendering_boilerplate/public/index.html @@ -14,9 +14,8 @@ 30 Days Of React App -
diff --git a/10_React_Project_Folder_Structure/10_react_project_folder_structure_boilerplate/src/styles/footer.css b/10_React_Project_Folder_Structure/10_react_project_folder_structure_boilerplate/src/styles/footer.css index c7e5e0b..dd3887b 100644 --- a/10_React_Project_Folder_Structure/10_react_project_folder_structure_boilerplate/src/styles/footer.css +++ b/10_React_Project_Folder_Structure/10_react_project_folder_structure_boilerplate/src/styles/footer.css @@ -1,6 +1,4 @@ footer { - position: absolute; - bottom: 0; width: 100%; height: 60px; /* Height of the footer */ @@ -11,4 +9,4 @@ footer { font-weight: 400; text-align: center; line-height: 60px; -} \ No newline at end of file +} diff --git a/10_React_Project_Folder_Structure/10_react_project_folder_structure_boilerplate/src/styles/header.css b/10_React_Project_Folder_Structure/10_react_project_folder_structure_boilerplate/src/styles/header.css index f1b7908..c3d5f95 100644 --- a/10_React_Project_Folder_Structure/10_react_project_folder_structure_boilerplate/src/styles/header.css +++ b/10_React_Project_Folder_Structure/10_react_project_folder_structure_boilerplate/src/styles/header.css @@ -1,5 +1,4 @@ header { background-color: #61dbfb; - padding: 25; padding: 10px; } diff --git a/12_Day_Forms/12_forms_boilerplate/public/index.html b/12_Day_Forms/12_forms_boilerplate/public/index.html index 44fa1f3..91726ca 100644 --- a/12_Day_Forms/12_forms_boilerplate/public/index.html +++ b/12_Day_Forms/12_forms_boilerplate/public/index.html @@ -14,9 +14,8 @@ 30 Days Of React App -
diff --git a/13_Day_Controlled_Versus_Uncontrolled_Input/13_uncontrolled_input_boilerplate/public/index.html b/13_Day_Controlled_Versus_Uncontrolled_Input/13_uncontrolled_input_boilerplate/public/index.html index 44fa1f3..91726ca 100644 --- a/13_Day_Controlled_Versus_Uncontrolled_Input/13_uncontrolled_input_boilerplate/public/index.html +++ b/13_Day_Controlled_Versus_Uncontrolled_Input/13_uncontrolled_input_boilerplate/public/index.html @@ -14,9 +14,8 @@ 30 Days Of React App -
diff --git a/14_Day_Component_Life_Cycles/14_component_life_cycles_boilerplate/public/index.html b/14_Day_Component_Life_Cycles/14_component_life_cycles_boilerplate/public/index.html index 44fa1f3..91726ca 100644 --- a/14_Day_Component_Life_Cycles/14_component_life_cycles_boilerplate/public/index.html +++ b/14_Day_Component_Life_Cycles/14_component_life_cycles_boilerplate/public/index.html @@ -14,9 +14,8 @@ 30 Days Of React App -
diff --git a/15_Third_Party_Packages/15_third_party_packages.md b/15_Third_Party_Packages/15_third_party_packages.md index 991f5fb..9bca402 100644 --- a/15_Third_Party_Packages/15_third_party_packages.md +++ b/15_Third_Party_Packages/15_third_party_packages.md @@ -85,7 +85,6 @@ After installing node-sass you can start using Sass in React. Create a styles fo /* ./styles/header.scss */ header { background-color: #61dbfb; - padding: 25; padding: 10px; margin: 0; } @@ -147,7 +146,6 @@ Naming: /* ./styles/header.module.scss */ .header { background-color: #61dbfb; - padding: 25; padding: 10px; margin: 0; } @@ -384,7 +382,6 @@ const Title = styled.h1` ` const Header = styled.header` background-color: #61dbfb; - padding: 25; padding: 10px; margin: 0; ` diff --git a/15_Third_Party_Packages/15_third_pary_packages_boilerplate/public/index.html b/15_Third_Party_Packages/15_third_pary_packages_boilerplate/public/index.html index 44fa1f3..91726ca 100644 --- a/15_Third_Party_Packages/15_third_pary_packages_boilerplate/public/index.html +++ b/15_Third_Party_Packages/15_third_pary_packages_boilerplate/public/index.html @@ -14,9 +14,8 @@ 30 Days Of React App -
diff --git a/15_Third_Party_Packages/15_third_pary_packages_boilerplate/src/index.js b/15_Third_Party_Packages/15_third_pary_packages_boilerplate/src/index.js index 071df45..95ce390 100644 --- a/15_Third_Party_Packages/15_third_pary_packages_boilerplate/src/index.js +++ b/15_Third_Party_Packages/15_third_pary_packages_boilerplate/src/index.js @@ -19,7 +19,6 @@ const SubTitle = styled.h2` const Header = styled.header` background-color: #61dbfb; - padding: 25; padding: 10px; margin: 0; ` diff --git a/16_Higher_Order_Component/16_higher_order_component_boilerplate/public/index.html b/16_Higher_Order_Component/16_higher_order_component_boilerplate/public/index.html index 44fa1f3..91726ca 100644 --- a/16_Higher_Order_Component/16_higher_order_component_boilerplate/public/index.html +++ b/16_Higher_Order_Component/16_higher_order_component_boilerplate/public/index.html @@ -14,9 +14,8 @@ 30 Days Of React App -
diff --git a/17_React_Router/17_react_router_boilerplate/public/index.html b/17_React_Router/17_react_router_boilerplate/public/index.html index 44fa1f3..91726ca 100644 --- a/17_React_Router/17_react_router_boilerplate/public/index.html +++ b/17_React_Router/17_react_router_boilerplate/public/index.html @@ -14,9 +14,8 @@ 30 Days Of React App -
diff --git a/18_Fetch_And_Axios/18_fetch_and_axios_boilerplate/public/index.html b/18_Fetch_And_Axios/18_fetch_and_axios_boilerplate/public/index.html index 44fa1f3..91726ca 100644 --- a/18_Fetch_And_Axios/18_fetch_and_axios_boilerplate/public/index.html +++ b/18_Fetch_And_Axios/18_fetch_and_axios_boilerplate/public/index.html @@ -14,9 +14,8 @@ 30 Days Of React App -
diff --git a/19_projects/19_projects_boilerplate/public/index.html b/19_projects/19_projects_boilerplate/public/index.html index 44fa1f3..91726ca 100644 --- a/19_projects/19_projects_boilerplate/public/index.html +++ b/19_projects/19_projects_boilerplate/public/index.html @@ -14,9 +14,8 @@ 30 Days Of React App -
diff --git a/20_projects/20_projects_boilerplate/public/index.html b/20_projects/20_projects_boilerplate/public/index.html index 44fa1f3..91726ca 100644 --- a/20_projects/20_projects_boilerplate/public/index.html +++ b/20_projects/20_projects_boilerplate/public/index.html @@ -14,9 +14,8 @@ 30 Days Of React App -
diff --git a/21_Introducing_Hooks/21_introducing_hooks_boilerplate/public/index.html b/21_Introducing_Hooks/21_introducing_hooks_boilerplate/public/index.html index 44fa1f3..91726ca 100644 --- a/21_Introducing_Hooks/21_introducing_hooks_boilerplate/public/index.html +++ b/21_Introducing_Hooks/21_introducing_hooks_boilerplate/public/index.html @@ -14,9 +14,8 @@ 30 Days Of React App -
diff --git a/21_Introducing_Hooks/21_introducing_hooks_boilerplate/src/index.scss b/21_Introducing_Hooks/21_introducing_hooks_boilerplate/src/index.scss index a06a02f..5774cf5 100644 --- a/21_Introducing_Hooks/21_introducing_hooks_boilerplate/src/index.scss +++ b/21_Introducing_Hooks/21_introducing_hooks_boilerplate/src/index.scss @@ -45,7 +45,6 @@ h3 { header { background-color: #61dbfb; - padding: 25; padding: 10px; } @@ -64,8 +63,6 @@ ul li { } footer { - position: absolute; - bottom: 0; width: 100%; height: 60px; /* Height of the footer */ diff --git a/22_Form_Using_Hooks/22_form_using_hooks_boilerplate/public/index.html b/22_Form_Using_Hooks/22_form_using_hooks_boilerplate/public/index.html index 44fa1f3..91726ca 100644 --- a/22_Form_Using_Hooks/22_form_using_hooks_boilerplate/public/index.html +++ b/22_Form_Using_Hooks/22_form_using_hooks_boilerplate/public/index.html @@ -14,9 +14,8 @@ 30 Days Of React App -
diff --git a/22_Form_Using_Hooks/22_form_using_hooks_boilerplate/src/index.scss b/22_Form_Using_Hooks/22_form_using_hooks_boilerplate/src/index.scss index a06a02f..5774cf5 100644 --- a/22_Form_Using_Hooks/22_form_using_hooks_boilerplate/src/index.scss +++ b/22_Form_Using_Hooks/22_form_using_hooks_boilerplate/src/index.scss @@ -45,7 +45,6 @@ h3 { header { background-color: #61dbfb; - padding: 25; padding: 10px; } @@ -64,8 +63,6 @@ ul li { } footer { - position: absolute; - bottom: 0; width: 100%; height: 60px; /* Height of the footer */ diff --git a/23_Fetching_Data_Using_Hooks/23_fetching_data_using_hooks_boilerplate/public/index.html b/23_Fetching_Data_Using_Hooks/23_fetching_data_using_hooks_boilerplate/public/index.html index 44fa1f3..91726ca 100644 --- a/23_Fetching_Data_Using_Hooks/23_fetching_data_using_hooks_boilerplate/public/index.html +++ b/23_Fetching_Data_Using_Hooks/23_fetching_data_using_hooks_boilerplate/public/index.html @@ -14,9 +14,8 @@ 30 Days Of React App -
diff --git a/23_Fetching_Data_Using_Hooks/23_fetching_data_using_hooks_boilerplate/src/index.scss b/23_Fetching_Data_Using_Hooks/23_fetching_data_using_hooks_boilerplate/src/index.scss index a06a02f..5774cf5 100644 --- a/23_Fetching_Data_Using_Hooks/23_fetching_data_using_hooks_boilerplate/src/index.scss +++ b/23_Fetching_Data_Using_Hooks/23_fetching_data_using_hooks_boilerplate/src/index.scss @@ -45,7 +45,6 @@ h3 { header { background-color: #61dbfb; - padding: 25; padding: 10px; } @@ -64,8 +63,6 @@ ul li { } footer { - position: absolute; - bottom: 0; width: 100%; height: 60px; /* Height of the footer */ diff --git a/24_projects/24_projects_boilerplate/public/index.html b/24_projects/24_projects_boilerplate/public/index.html index 44fa1f3..91726ca 100644 --- a/24_projects/24_projects_boilerplate/public/index.html +++ b/24_projects/24_projects_boilerplate/public/index.html @@ -14,9 +14,8 @@ 30 Days Of React App -
diff --git a/24_projects/24_projects_boilerplate/src/index.scss b/24_projects/24_projects_boilerplate/src/index.scss index a06a02f..5774cf5 100644 --- a/24_projects/24_projects_boilerplate/src/index.scss +++ b/24_projects/24_projects_boilerplate/src/index.scss @@ -45,7 +45,6 @@ h3 { header { background-color: #61dbfb; - padding: 25; padding: 10px; } @@ -64,8 +63,6 @@ ul li { } footer { - position: absolute; - bottom: 0; width: 100%; height: 60px; /* Height of the footer */ diff --git a/25_Custom_Hooks/25_custom_hooks_boilerplate/public/index.html b/25_Custom_Hooks/25_custom_hooks_boilerplate/public/index.html index 44fa1f3..91726ca 100644 --- a/25_Custom_Hooks/25_custom_hooks_boilerplate/public/index.html +++ b/25_Custom_Hooks/25_custom_hooks_boilerplate/public/index.html @@ -14,9 +14,8 @@ 30 Days Of React App -
diff --git a/25_Custom_Hooks/25_custom_hooks_boilerplate/src/index.scss b/25_Custom_Hooks/25_custom_hooks_boilerplate/src/index.scss index a06a02f..5774cf5 100644 --- a/25_Custom_Hooks/25_custom_hooks_boilerplate/src/index.scss +++ b/25_Custom_Hooks/25_custom_hooks_boilerplate/src/index.scss @@ -45,7 +45,6 @@ h3 { header { background-color: #61dbfb; - padding: 25; padding: 10px; } @@ -64,8 +63,6 @@ ul li { } footer { - position: absolute; - bottom: 0; width: 100%; height: 60px; /* Height of the footer */ diff --git a/26_Context/26_context_boilerplate/public/index.html b/26_Context/26_context_boilerplate/public/index.html index 44fa1f3..91726ca 100644 --- a/26_Context/26_context_boilerplate/public/index.html +++ b/26_Context/26_context_boilerplate/public/index.html @@ -14,9 +14,8 @@ 30 Days Of React App -
diff --git a/26_Context/26_context_boilerplate/src/index.scss b/26_Context/26_context_boilerplate/src/index.scss index a06a02f..5774cf5 100644 --- a/26_Context/26_context_boilerplate/src/index.scss +++ b/26_Context/26_context_boilerplate/src/index.scss @@ -45,7 +45,6 @@ h3 { header { background-color: #61dbfb; - padding: 25; padding: 10px; } @@ -64,8 +63,6 @@ ul li { } footer { - position: absolute; - bottom: 0; width: 100%; height: 60px; /* Height of the footer */ diff --git a/27_Ref/27_ref_boilerplate/public/index.html b/27_Ref/27_ref_boilerplate/public/index.html index 44fa1f3..91726ca 100644 --- a/27_Ref/27_ref_boilerplate/public/index.html +++ b/27_Ref/27_ref_boilerplate/public/index.html @@ -14,9 +14,8 @@ 30 Days Of React App -
diff --git a/27_Ref/27_ref_boilerplate/src/index.scss b/27_Ref/27_ref_boilerplate/src/index.scss index a06a02f..5774cf5 100644 --- a/27_Ref/27_ref_boilerplate/src/index.scss +++ b/27_Ref/27_ref_boilerplate/src/index.scss @@ -45,7 +45,6 @@ h3 { header { background-color: #61dbfb; - padding: 25; padding: 10px; } @@ -64,8 +63,6 @@ ul li { } footer { - position: absolute; - bottom: 0; width: 100%; height: 60px; /* Height of the footer */ diff --git a/28_project/28_project_boilerplate/public/index.html b/28_project/28_project_boilerplate/public/index.html index 44fa1f3..91726ca 100644 --- a/28_project/28_project_boilerplate/public/index.html +++ b/28_project/28_project_boilerplate/public/index.html @@ -14,9 +14,8 @@ 30 Days Of React App -
diff --git a/28_project/28_project_boilerplate/src/index.scss b/28_project/28_project_boilerplate/src/index.scss index a06a02f..5774cf5 100644 --- a/28_project/28_project_boilerplate/src/index.scss +++ b/28_project/28_project_boilerplate/src/index.scss @@ -45,7 +45,6 @@ h3 { header { background-color: #61dbfb; - padding: 25; padding: 10px; } @@ -64,8 +63,6 @@ ul li { } footer { - position: absolute; - bottom: 0; width: 100%; height: 60px; /* Height of the footer */ diff --git a/29_explore/29_explore_boilerplate/public/index.html b/29_explore/29_explore_boilerplate/public/index.html index 44fa1f3..91726ca 100644 --- a/29_explore/29_explore_boilerplate/public/index.html +++ b/29_explore/29_explore_boilerplate/public/index.html @@ -14,9 +14,8 @@ 30 Days Of React App -
diff --git a/29_explore/29_explore_boilerplate/src/index.scss b/29_explore/29_explore_boilerplate/src/index.scss index a06a02f..5774cf5 100644 --- a/29_explore/29_explore_boilerplate/src/index.scss +++ b/29_explore/29_explore_boilerplate/src/index.scss @@ -45,7 +45,6 @@ h3 { header { background-color: #61dbfb; - padding: 25; padding: 10px; } @@ -64,8 +63,6 @@ ul li { } footer { - position: absolute; - bottom: 0; width: 100%; height: 60px; /* Height of the footer */ diff --git a/30_conclusions/30_conclusions_boilerplate/public/index.html b/30_conclusions/30_conclusions_boilerplate/public/index.html index 44fa1f3..91726ca 100644 --- a/30_conclusions/30_conclusions_boilerplate/public/index.html +++ b/30_conclusions/30_conclusions_boilerplate/public/index.html @@ -14,9 +14,8 @@ 30 Days Of React App -
diff --git a/30_conclusions/30_conclusions_boilerplate/src/index.scss b/30_conclusions/30_conclusions_boilerplate/src/index.scss index a06a02f..5774cf5 100644 --- a/30_conclusions/30_conclusions_boilerplate/src/index.scss +++ b/30_conclusions/30_conclusions_boilerplate/src/index.scss @@ -45,7 +45,6 @@ h3 { header { background-color: #61dbfb; - padding: 25; padding: 10px; } @@ -64,8 +63,6 @@ ul li { } footer { - position: absolute; - bottom: 0; width: 100%; height: 60px; /* Height of the footer */