From 629228d1eb3e41e6b21752df37948643cf11ff10 Mon Sep 17 00:00:00 2001 From: "galina.kalvatcheva" Date: Mon, 9 Aug 2021 21:06:44 -0400 Subject: [PATCH] SEEDS-532 Add footer html + style --- app/views/styles/theme-grid/theme-grid.scss | 18 ++++++++++++++++++ app/views/surveys/webform.pug | 4 ++++ 2 files changed, 22 insertions(+) diff --git a/app/views/styles/theme-grid/theme-grid.scss b/app/views/styles/theme-grid/theme-grid.scss index bcdb88271..57ba695f3 100644 --- a/app/views/styles/theme-grid/theme-grid.scss +++ b/app/views/styles/theme-grid/theme-grid.scss @@ -46,6 +46,8 @@ $border-color: #eeeeee; $border-color-dark: #cccccc; $body-bg: #ffffff; $text-color: #4e514e; +$footer-text-color: #333333; +$footer-link-hover: #e8c410; $offline-red: #A30000; $offline-red-hover: #AD0000; @@ -619,3 +621,19 @@ i.icon.icon-minus{ width: calc(16.6666666667%); } } + +.copyright{ + color: $footer-text-color; + font-size: $default-text-size - 1; + margin-top: $padding-unit; + overflow: hidden; + text-align: center; + a{ + color: $secondary-green; + text-align: center; + text-decoration: none; + &:hover{ + color: $footer-link-hover; + } + } +} diff --git a/app/views/surveys/webform.pug b/app/views/surveys/webform.pug index c4f4b0fc8..c4390e3a0 100644 --- a/app/views/surveys/webform.pug +++ b/app/views/surveys/webform.pug @@ -37,6 +37,10 @@ block content include component/_form-header | !{form} include component/_form-footer + .copyright + | Designed by  + a(href='https://developmentgateway.org/' target='_blank') Development Gateway + | - 2021 if offlinePath include component/_side-slider include component/_feedback-bar