Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixing the footer at the bottom #96

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/blocks/footer/dark/a.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import PropTypes from "prop-types";

function DarkFooterA(props) {
return (
<footer className="text-gray-400 bg-gray-900 body-font">
<footer className="text-gray-400 md:fixed md:bottom-14 md:left-0 md:w-screen bg-gray-900 body-font">
<div className="container px-5 py-24 mx-auto flex md:items-center lg:items-start md:flex-row md:flex-nowrap flex-wrap flex-col">
<div className="w-64 flex-shrink-0 md:mx-0 mx-auto text-center md:text-left">
<a href className="flex title-font font-medium items-center md:justify-start justify-center text-white">
Expand Down
2 changes: 1 addition & 1 deletion src/blocks/footer/dark/b.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import PropTypes from "prop-types";

function DarkFooterB(props) {
return (
<footer className="text-gray-400 bg-gray-900 body-font">
<footer className="text-gray-400 md:fixed md:bottom-14 md:left-0 md:w-screen bg-gray-900 body-font">
<div className="container px-5 py-24 mx-auto flex md:items-center lg:items-start md:flex-row md:flex-nowrap flex-wrap flex-col">
<div className="w-64 flex-shrink-0 md:mx-0 mx-auto text-center md:text-left md:mt-0 mt-10">
<a href className="flex title-font font-medium items-center md:justify-start justify-center text-white">
Expand Down
2 changes: 1 addition & 1 deletion src/blocks/footer/dark/c.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import PropTypes from "prop-types";

function DarkFooterC(props) {
return (
<footer className="text-gray-400 bg-gray-900 body-font">
<footer className="text-gray-400 bg-gray-900 md:fixed md:bottom-14 md:left-0 md:w-screen body-font">
<div className="container px-5 py-24 mx-auto">
<div className="flex flex-wrap md:text-left text-center -mb-10 -mx-4">
<div className="lg:w-1/6 md:w-1/2 w-full px-4">
Expand Down
2 changes: 1 addition & 1 deletion src/blocks/footer/dark/d.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import PropTypes from "prop-types";

function DarkFooterD(props) {
return (
<footer className="text-gray-400 bg-gray-900 body-font">
<footer className="text-gray-400 bg-gray-900 md:fixed md:bottom-14 md:left-0 md:w-screen body-font">
<div className="container px-5 py-8 mx-auto flex items-center sm:flex-row flex-col">
<a href className="flex title-font font-medium items-center md:justify-start justify-center text-white">
<svg
Expand Down
2 changes: 1 addition & 1 deletion src/blocks/footer/dark/e.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import PropTypes from "prop-types";

function DarkFooterE(props) {
return (
<footer className="text-gray-400 bg-gray-900 body-font">
<footer className="text-gray-400 bg-gray-900 md:fixed md:bottom-14 md:left-0 md:w-screen body-font">
<div className="container px-5 py-24 mx-auto">
<div className="flex flex-wrap md:text-left text-center order-first">
<div className="lg:w-1/4 md:w-1/2 w-full px-4">
Expand Down
2 changes: 1 addition & 1 deletion src/blocks/footer/light/a.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import PropTypes from "prop-types";

function LightFooterA(props) {
return (
<footer className="text-gray-600 body-font">
<footer className="text-gray-600 md:fixed md:bottom-14 md:left-0 md:w-screen body-font">
<div className="container px-5 py-24 mx-auto flex md:items-center lg:items-start md:flex-row md:flex-nowrap flex-wrap flex-col">
<div className="w-64 flex-shrink-0 md:mx-0 mx-auto text-center md:text-left">
<a href className="flex title-font font-medium items-center md:justify-start justify-center text-gray-900">
Expand Down
2 changes: 1 addition & 1 deletion src/blocks/footer/light/b.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import PropTypes from "prop-types";

function LightFooterB(props) {
return (
<footer className="text-gray-600 body-font">
<footer className="text-gray-600 md:fixed md:bottom-14 md:left-0 md:w-screen body-font">
<div className="container px-5 py-24 mx-auto flex md:items-center lg:items-start md:flex-row md:flex-nowrap flex-wrap flex-col">
<div className="w-64 flex-shrink-0 md:mx-0 mx-auto text-center md:text-left md:mt-0 mt-10">
<a href className="flex title-font font-medium items-center md:justify-start justify-center text-gray-900">
Expand Down
2 changes: 1 addition & 1 deletion src/blocks/footer/light/c.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import PropTypes from "prop-types";

function LightFooterC(props) {
return (
<footer className="text-gray-600 body-font">
<footer className="text-gray-600 md:fixed md:bottom-14 md:left-0 md:w-screen body-font">
<div className="container px-5 py-24 mx-auto">
<div className="flex flex-wrap md:text-left text-center -mb-10 -mx-4">
<div className="lg:w-1/6 md:w-1/2 w-full px-4">
Expand Down
2 changes: 1 addition & 1 deletion src/blocks/footer/light/d.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import PropTypes from "prop-types";

function LightFooterD(props) {
return (
<footer className="text-gray-600 body-font">
<footer className="text-gray-600 md:fixed md:bottom-14 md:left-0 md:w-screen body-font">
<div className="container px-5 py-8 mx-auto flex items-center sm:flex-row flex-col">
<a href className="flex title-font font-medium items-center md:justify-start justify-center text-gray-900">
<svg
Expand Down
2 changes: 1 addition & 1 deletion src/blocks/footer/light/e.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import PropTypes from "prop-types";

function LightFooterE(props) {
return (
<footer className="text-gray-600 body-font">
<footer className="text-gray-600 md:fixed md:bottom-14 md:left-0 md:w-screen body-font">
<div className="container px-5 py-24 mx-auto">
<div className="flex flex-wrap md:text-left text-center order-first">
<div className="lg:w-1/4 md:w-1/2 w-full px-4">
Expand Down