diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2017-07-24 20:05:29 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-07-24 20:05:29 +0200 |
commit | 07d93716aa226714bc13f87bd716a562139e6f60 (patch) | |
tree | 0435ddf988a56b128b3b171ec76f66a63d745328 /app/javascript/styles | |
parent | 88b5e0b70340138cfb2495abb5384f62908b82a6 (diff) |
Improve remote profile disclaimer (#4342)
* Improve remote profile disclaimer * yarn run manage:translations
Diffstat (limited to 'app/javascript/styles')
-rw-r--r-- | app/javascript/styles/components.scss | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/app/javascript/styles/components.scss b/app/javascript/styles/components.scss index c4c4420eb..1be07b023 100644 --- a/app/javascript/styles/components.scss +++ b/app/javascript/styles/components.scss @@ -855,6 +855,28 @@ } } +.account__disclaimer { + padding: 10px; + border-top: 1px solid lighten($ui-base-color, 8%); + color: $ui-base-lighter-color; + + strong { + font-weight: 500; + } + + a { + font-weight: 500; + color: inherit; + text-decoration: underline; + + &:hover, + &:focus, + &:active { + text-decoration: none; + } + } +} + .account__header__content { color: $ui-primary-color; font-size: 14px; |