From ec16dcf439d7c00f5843850ac6454f7c9ea8369b Mon Sep 17 00:00:00 2001 From: nael Date: Wed, 24 Apr 2019 18:43:47 +0200 Subject: [PATCH] Footer adjustment + including WordPress htaccess. WIP #2684 @0:10 --- .htaccess | 12 ++++++++++++ .../c6/resources/assets/styles/layouts/footer.styl | 3 +++ 2 files changed, 15 insertions(+) create mode 100644 .htaccess diff --git a/.htaccess b/.htaccess new file mode 100644 index 0000000..e303c53 --- /dev/null +++ b/.htaccess @@ -0,0 +1,12 @@ + +# BEGIN WordPress + +RewriteEngine On +RewriteBase / +RewriteRule ^index\.php$ - [L] +RewriteCond %{REQUEST_FILENAME} !-f +RewriteCond %{REQUEST_FILENAME} !-d +RewriteRule . /index.php [L] + + +# END WordPress \ No newline at end of file diff --git a/wp-content/themes/c6/resources/assets/styles/layouts/footer.styl b/wp-content/themes/c6/resources/assets/styles/layouts/footer.styl index ee0e0cc..8edbb67 100644 --- a/wp-content/themes/c6/resources/assets/styles/layouts/footer.styl +++ b/wp-content/themes/c6/resources/assets/styles/layouts/footer.styl @@ -129,3 +129,6 @@ $breakpoint-footer-cols-1 = 710px // When to break to 1 col view font-size: 14px opacity: 0.5 //constrain(padding-right, 5vw) // Needed to match 5vw applied internally to footer-columns right side + + +below($breakpoint-footer-cols-1) + text-align: center -- 2.39.5