diff --git a/src/shared/components/Settings/Account/LinkedAccount/AddWebLink.jsx b/src/shared/components/Settings/Account/LinkedAccount/AddWebLink.jsx index d416cf85ed..a80f92d74c 100644 --- a/src/shared/components/Settings/Account/LinkedAccount/AddWebLink.jsx +++ b/src/shared/components/Settings/Account/LinkedAccount/AddWebLink.jsx @@ -190,6 +190,7 @@ Please enter a valid URL ) } + Add Link diff --git a/src/shared/components/Settings/Account/LinkedAccount/styles.scss b/src/shared/components/Settings/Account/LinkedAccount/styles.scss index 571189de6b..ea8c670c8b 100644 --- a/src/shared/components/Settings/Account/LinkedAccount/styles.scss +++ b/src/shared/components/Settings/Account/LinkedAccount/styles.scss @@ -1,4 +1,4 @@ -@import "~styles/mixins"; +@import "../../style"; .links { border-bottom: none; @@ -212,7 +212,7 @@ input.url { max-width: 100%; - margin: 0; + margin: 5px 0 0 0; border-radius: 4px; @include placeholder { @@ -868,3 +868,34 @@ } } } + +.buttons { + margin-top: auto; + margin-bottom: auto; + + .button-add-link { + align-self: center; + color: $tc-white; + margin: 0; + + div:first-child { + margin-top: 0; + } + + button, + a { + @include roboto-medium; + + height: 40px; + font-size: 15px; + font-weight: 500; + margin: 0; + padding: 0; + width: 155px; + } + + @include xs-to-sm { + display: none; + } + } +}