diff --git a/app/index.html b/app/index.html index b3525c47..d28b5744 100644 --- a/app/index.html +++ b/app/index.html @@ -23,6 +23,8 @@ {{content-for 'body-footer'}} - + + Feedback & Support + diff --git a/app/styles/app.scss b/app/styles/app.scss index cad3c9d2..75347017 100644 --- a/app/styles/app.scss +++ b/app/styles/app.scss @@ -11,6 +11,7 @@ @import "app/forms"; @import "app/github"; @import "app/main/annotations"; +@import "app/userlike"; @import "app/main/list"; @import "app/main/log"; diff --git a/app/styles/app/userlike.sass b/app/styles/app/userlike.sass new file mode 100644 index 00000000..b9791c1b --- /dev/null +++ b/app/styles/app/userlike.sass @@ -0,0 +1,28 @@ +.feedback-button + display: none + +.pro + .feedback-button + display: inline-block + +.feedback-button + display: inline-block + position: fixed + right: 1% + left: auto + bottom: 0 + margin: 0 + padding: .5em 1em .5em + border-radius: 4px + transform: translateY(20%) + will-change: transform + transition: transform ease 200ms + background: $white + font-size: 13px + color: #a2afb3 + text-transform: uppercase + box-shadow: 0px 0px 3px 1px rgba(0,0,0,0.15) + z-index: 89 + +.feedback-button:hover + transform: translateY(5%) \ No newline at end of file