diff --git a/components/core/Auth/Initial.js b/components/core/Auth/Initial.js index a2a0dd4c..987be9fc 100644 --- a/components/core/Auth/Initial.js +++ b/components/core/Auth/Initial.js @@ -10,9 +10,9 @@ import * as Styles from "~/common/styles"; import { css } from "@emotion/react"; import { useField, useForm } from "~/common/hooks"; import { Toggle, SignUpPopover, ArrowButton } from "~/components/core/Auth/components"; +import { AnimateSharedLayout, motion } from "framer-motion"; import Field from "~/components/core/Field"; -import { AnimateSharedLayout, motion } from "framer-motion"; const STYLES_INITIAL_CONTAINER = css` display: flex; @@ -217,21 +217,19 @@ function Initial( )} {showTermsAndServices && ( - - - -
- Terms of service -
-
+
+ +
+ Terms of service +
+
- -
- Community guidelines -
-
- - + +
+ Community guidelines +
+
+
)} diff --git a/components/core/CTATransition.js b/components/core/CTATransition.js index 845e9d5d..ce23b807 100644 --- a/components/core/CTATransition.js +++ b/components/core/CTATransition.js @@ -5,9 +5,10 @@ import * as Strings from "~/common/strings"; import { Boundary } from "~/components/system/components/fragments/Boundary"; import { css } from "@emotion/react"; -import AuthInitial from "~/components/core/Auth/Initial"; import { Alert } from "~/components/core/Alert"; +import AuthInitial from "~/components/core/Auth/Initial"; + const STYLES_BACKGROUND = css` z-index: ${Constants.zindex.cta}; ${Styles.CONTAINER_CENTERED}; diff --git a/components/system/components/Buttons.js b/components/system/components/Buttons.js index 2539750c..f19143d2 100644 --- a/components/system/components/Buttons.js +++ b/components/system/components/Buttons.js @@ -28,6 +28,7 @@ const STYLES_BUTTON_PRIMARY = css` cursor: pointer; background-color: ${Constants.system.blue}; color: ${Constants.system.white}; + text-decoration: none; :hover { background-color: #0079eb; @@ -53,12 +54,12 @@ const STYLES_BUTTON_PRIMARY_TRANSPARENT = css` color: ${Constants.system.blue}; `; -export const ButtonPrimary = (props) => { +export const ButtonPrimary = ({ style, full, ...props }) => { if (props.loading) { return (