diff --git a/src/modules/core/components/SearchHeader/index.js b/src/modules/core/components/SearchHeader/index.js index 8b56679a6..462fa2133 100644 --- a/src/modules/core/components/SearchHeader/index.js +++ b/src/modules/core/components/SearchHeader/index.js @@ -24,16 +24,9 @@ function SearchHeader (props) { marginRight: '1rem', marginBottom: '0.5rem' }, - 'a, button.link': { - background: 'none', - border: '0', - color: 'white', - fontFamily: 'inherit', - margin: '0', - padding: '0', + a: { textDecoration: 'none', '&:hover': { - cursor: 'pointer', textDecoration: 'underline' } }, @@ -48,7 +41,7 @@ function SearchHeader (props) { }} > Account - + ); diff --git a/src/modules/getthis/components/GetThisOptionList/index.js b/src/modules/getthis/components/GetThisOptionList/index.js index 896576160..623b8e764 100644 --- a/src/modules/getthis/components/GetThisOptionList/index.js +++ b/src/modules/getthis/components/GetThisOptionList/index.js @@ -61,7 +61,7 @@ function GetThisOptions (props) { if (status === 'Not logged in') { return (
- + Log in to view request options
diff --git a/src/modules/profile/components/Authentication/index.js b/src/modules/profile/components/Authentication/index.js index d67565ed0..5c551676a 100644 --- a/src/modules/profile/components/Authentication/index.js +++ b/src/modules/profile/components/Authentication/index.js @@ -6,7 +6,7 @@ export default function Authentication (props) { return ( {props.children || 'Log ' + (props.logout ? 'out' : 'in')} @@ -15,7 +15,7 @@ export default function Authentication (props) { Authentication.propTypes = { logout: PropTypes.bool, - link: PropTypes.bool, + button: PropTypes.bool, children: PropTypes.oneOfType([ PropTypes.arrayOf(PropTypes.node), PropTypes.node diff --git a/src/modules/profile/components/AuthenticationRequired/index.js b/src/modules/profile/components/AuthenticationRequired/index.js index eb46f25bf..50f277e6e 100644 --- a/src/modules/profile/components/AuthenticationRequired/index.js +++ b/src/modules/profile/components/AuthenticationRequired/index.js @@ -13,7 +13,7 @@ function AuthenticationRequired (props) { } return ( - + Log in to continue );