From 5f634ef7c3608fd7316eaba4acb802ccb427e830 Mon Sep 17 00:00:00 2001 From: danbiilee Date: Thu, 5 Nov 2020 12:18:48 +0900 Subject: [PATCH] Fix css: footer position --- 02_Day_Introduction_to_React/02_introduction_to_react.md | 8 -------- .../03_setting_up_boilerplate/public/index.html | 2 -- .../04_components_boilerplate/public/index.html | 2 -- 05_Day_Props/05_props_boilerplate/public/index.html | 2 -- .../06_map_list_keys_boilerplate/public/index.html | 2 -- .../public/index.html | 2 -- 08_Day_States/08_states_boilerplate/public/index.html | 2 -- .../public/index.html | 2 -- .../src/styles/footer.css | 4 +--- 12_Day_Forms/12_forms_boilerplate/public/index.html | 2 -- .../13_uncontrolled_input_boilerplate/public/index.html | 2 -- .../public/index.html | 2 -- .../15_third_pary_packages_boilerplate/public/index.html | 2 -- .../public/index.html | 2 -- .../17_react_router_boilerplate/public/index.html | 2 -- .../18_fetch_and_axios_boilerplate/public/index.html | 2 -- 19_projects/19_projects_boilerplate/public/index.html | 2 -- 20_projects/20_projects_boilerplate/public/index.html | 2 -- .../21_introducing_hooks_boilerplate/public/index.html | 2 -- .../21_introducing_hooks_boilerplate/src/index.scss | 2 -- .../22_form_using_hooks_boilerplate/public/index.html | 2 -- .../22_form_using_hooks_boilerplate/src/index.scss | 2 -- .../public/index.html | 2 -- .../src/index.scss | 2 -- 24_projects/24_projects_boilerplate/public/index.html | 2 -- 24_projects/24_projects_boilerplate/src/index.scss | 2 -- .../25_custom_hooks_boilerplate/public/index.html | 2 -- .../25_custom_hooks_boilerplate/src/index.scss | 2 -- 26_Context/26_context_boilerplate/public/index.html | 2 -- 26_Context/26_context_boilerplate/src/index.scss | 2 -- 27_Ref/27_ref_boilerplate/public/index.html | 2 -- 27_Ref/27_ref_boilerplate/src/index.scss | 2 -- 28_project/28_project_boilerplate/public/index.html | 2 -- 28_project/28_project_boilerplate/src/index.scss | 2 -- 29_explore/29_explore_boilerplate/public/index.html | 2 -- 29_explore/29_explore_boilerplate/src/index.scss | 2 -- .../30_conclusions_boilerplate/public/index.html | 2 -- 30_conclusions/30_conclusions_boilerplate/src/index.scss | 2 -- 38 files changed, 1 insertion(+), 83 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 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 af73636..91726ca 100644 --- a/04_Day_Components/04_components_boilerplate/public/index.html +++ b/04_Day_Components/04_components_boilerplate/public/index.html @@ -79,8 +79,6 @@ } footer { - position: absolute; - bottom: 0; width: 100%; height: 60px; /* Height of the footer */ diff --git a/05_Day_Props/05_props_boilerplate/public/index.html b/05_Day_Props/05_props_boilerplate/public/index.html index af73636..91726ca 100644 --- a/05_Day_Props/05_props_boilerplate/public/index.html +++ b/05_Day_Props/05_props_boilerplate/public/index.html @@ -79,8 +79,6 @@ } footer { - position: absolute; - bottom: 0; width: 100%; height: 60px; /* Height of the footer */ 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 af73636..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 @@ -79,8 +79,6 @@ } footer { - position: absolute; - bottom: 0; width: 100%; height: 60px; /* Height of the footer */ 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 af73636..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 @@ -79,8 +79,6 @@ } footer { - position: absolute; - bottom: 0; width: 100%; height: 60px; /* Height of the footer */ diff --git a/08_Day_States/08_states_boilerplate/public/index.html b/08_Day_States/08_states_boilerplate/public/index.html index af73636..91726ca 100644 --- a/08_Day_States/08_states_boilerplate/public/index.html +++ b/08_Day_States/08_states_boilerplate/public/index.html @@ -79,8 +79,6 @@ } footer { - position: absolute; - bottom: 0; width: 100%; height: 60px; /* Height of the footer */ 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 af73636..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 @@ -79,8 +79,6 @@ } footer { - position: absolute; - bottom: 0; width: 100%; height: 60px; /* Height of the footer */ 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/12_Day_Forms/12_forms_boilerplate/public/index.html b/12_Day_Forms/12_forms_boilerplate/public/index.html index af73636..91726ca 100644 --- a/12_Day_Forms/12_forms_boilerplate/public/index.html +++ b/12_Day_Forms/12_forms_boilerplate/public/index.html @@ -79,8 +79,6 @@ } footer { - position: absolute; - bottom: 0; width: 100%; height: 60px; /* Height of the footer */ 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 af73636..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 @@ -79,8 +79,6 @@ } footer { - position: absolute; - bottom: 0; width: 100%; height: 60px; /* Height of the footer */ 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 af73636..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 @@ -79,8 +79,6 @@ } footer { - position: absolute; - bottom: 0; width: 100%; height: 60px; /* Height of the footer */ 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 af73636..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 @@ -79,8 +79,6 @@ } footer { - position: absolute; - bottom: 0; width: 100%; height: 60px; /* Height of the footer */ 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 af73636..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 @@ -79,8 +79,6 @@ } footer { - position: absolute; - bottom: 0; width: 100%; height: 60px; /* Height of the footer */ 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 af73636..91726ca 100644 --- a/17_React_Router/17_react_router_boilerplate/public/index.html +++ b/17_React_Router/17_react_router_boilerplate/public/index.html @@ -79,8 +79,6 @@ } footer { - position: absolute; - bottom: 0; width: 100%; height: 60px; /* Height of the footer */ 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 af73636..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 @@ -79,8 +79,6 @@ } footer { - position: absolute; - bottom: 0; width: 100%; height: 60px; /* Height of the footer */ diff --git a/19_projects/19_projects_boilerplate/public/index.html b/19_projects/19_projects_boilerplate/public/index.html index af73636..91726ca 100644 --- a/19_projects/19_projects_boilerplate/public/index.html +++ b/19_projects/19_projects_boilerplate/public/index.html @@ -79,8 +79,6 @@ } footer { - position: absolute; - bottom: 0; width: 100%; height: 60px; /* Height of the footer */ diff --git a/20_projects/20_projects_boilerplate/public/index.html b/20_projects/20_projects_boilerplate/public/index.html index af73636..91726ca 100644 --- a/20_projects/20_projects_boilerplate/public/index.html +++ b/20_projects/20_projects_boilerplate/public/index.html @@ -79,8 +79,6 @@ } footer { - position: absolute; - bottom: 0; width: 100%; height: 60px; /* Height of the footer */ 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 af73636..91726ca 100644 --- a/21_Introducing_Hooks/21_introducing_hooks_boilerplate/public/index.html +++ b/21_Introducing_Hooks/21_introducing_hooks_boilerplate/public/index.html @@ -79,8 +79,6 @@ } footer { - position: absolute; - bottom: 0; width: 100%; height: 60px; /* Height of the footer */ 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 d434410..5774cf5 100644 --- a/21_Introducing_Hooks/21_introducing_hooks_boilerplate/src/index.scss +++ b/21_Introducing_Hooks/21_introducing_hooks_boilerplate/src/index.scss @@ -63,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 af73636..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 @@ -79,8 +79,6 @@ } 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/src/index.scss b/22_Form_Using_Hooks/22_form_using_hooks_boilerplate/src/index.scss index d434410..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 @@ -63,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 af73636..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 @@ -79,8 +79,6 @@ } 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/src/index.scss b/23_Fetching_Data_Using_Hooks/23_fetching_data_using_hooks_boilerplate/src/index.scss index d434410..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 @@ -63,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 af73636..91726ca 100644 --- a/24_projects/24_projects_boilerplate/public/index.html +++ b/24_projects/24_projects_boilerplate/public/index.html @@ -79,8 +79,6 @@ } footer { - position: absolute; - bottom: 0; width: 100%; height: 60px; /* Height of the footer */ diff --git a/24_projects/24_projects_boilerplate/src/index.scss b/24_projects/24_projects_boilerplate/src/index.scss index d434410..5774cf5 100644 --- a/24_projects/24_projects_boilerplate/src/index.scss +++ b/24_projects/24_projects_boilerplate/src/index.scss @@ -63,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 af73636..91726ca 100644 --- a/25_Custom_Hooks/25_custom_hooks_boilerplate/public/index.html +++ b/25_Custom_Hooks/25_custom_hooks_boilerplate/public/index.html @@ -79,8 +79,6 @@ } footer { - position: absolute; - bottom: 0; width: 100%; height: 60px; /* Height of the footer */ 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 d434410..5774cf5 100644 --- a/25_Custom_Hooks/25_custom_hooks_boilerplate/src/index.scss +++ b/25_Custom_Hooks/25_custom_hooks_boilerplate/src/index.scss @@ -63,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 af73636..91726ca 100644 --- a/26_Context/26_context_boilerplate/public/index.html +++ b/26_Context/26_context_boilerplate/public/index.html @@ -79,8 +79,6 @@ } footer { - position: absolute; - bottom: 0; width: 100%; height: 60px; /* Height of the footer */ diff --git a/26_Context/26_context_boilerplate/src/index.scss b/26_Context/26_context_boilerplate/src/index.scss index d434410..5774cf5 100644 --- a/26_Context/26_context_boilerplate/src/index.scss +++ b/26_Context/26_context_boilerplate/src/index.scss @@ -63,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 af73636..91726ca 100644 --- a/27_Ref/27_ref_boilerplate/public/index.html +++ b/27_Ref/27_ref_boilerplate/public/index.html @@ -79,8 +79,6 @@ } footer { - position: absolute; - bottom: 0; width: 100%; height: 60px; /* Height of the footer */ diff --git a/27_Ref/27_ref_boilerplate/src/index.scss b/27_Ref/27_ref_boilerplate/src/index.scss index d434410..5774cf5 100644 --- a/27_Ref/27_ref_boilerplate/src/index.scss +++ b/27_Ref/27_ref_boilerplate/src/index.scss @@ -63,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 af73636..91726ca 100644 --- a/28_project/28_project_boilerplate/public/index.html +++ b/28_project/28_project_boilerplate/public/index.html @@ -79,8 +79,6 @@ } footer { - position: absolute; - bottom: 0; width: 100%; height: 60px; /* Height of the footer */ diff --git a/28_project/28_project_boilerplate/src/index.scss b/28_project/28_project_boilerplate/src/index.scss index d434410..5774cf5 100644 --- a/28_project/28_project_boilerplate/src/index.scss +++ b/28_project/28_project_boilerplate/src/index.scss @@ -63,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 af73636..91726ca 100644 --- a/29_explore/29_explore_boilerplate/public/index.html +++ b/29_explore/29_explore_boilerplate/public/index.html @@ -79,8 +79,6 @@ } footer { - position: absolute; - bottom: 0; width: 100%; height: 60px; /* Height of the footer */ diff --git a/29_explore/29_explore_boilerplate/src/index.scss b/29_explore/29_explore_boilerplate/src/index.scss index d434410..5774cf5 100644 --- a/29_explore/29_explore_boilerplate/src/index.scss +++ b/29_explore/29_explore_boilerplate/src/index.scss @@ -63,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 af73636..91726ca 100644 --- a/30_conclusions/30_conclusions_boilerplate/public/index.html +++ b/30_conclusions/30_conclusions_boilerplate/public/index.html @@ -79,8 +79,6 @@ } footer { - position: absolute; - bottom: 0; width: 100%; height: 60px; /* Height of the footer */ diff --git a/30_conclusions/30_conclusions_boilerplate/src/index.scss b/30_conclusions/30_conclusions_boilerplate/src/index.scss index d434410..5774cf5 100644 --- a/30_conclusions/30_conclusions_boilerplate/src/index.scss +++ b/30_conclusions/30_conclusions_boilerplate/src/index.scss @@ -63,8 +63,6 @@ ul li { } footer { - position: absolute; - bottom: 0; width: 100%; height: 60px; /* Height of the footer */