Skip to content

Commit

Permalink
Fix/aphrodite tags (#45)
Browse files Browse the repository at this point in the history
Fix/aphrodite tags
  • Loading branch information
germanattanasio authored Jun 19, 2019
2 parents c7a2b5a + 35a07bc commit 848fdf6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions views/FloatingCta.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import { StyleSheet, css } from 'aphrodite/no-important';
const styles = StyleSheet.create({
container: {
position: 'fixed',
bottom: '2rem',
bottom: '4rem',
right: '2rem',
paddingRight: '3em',
paddingLeft: '3em',
Expand All @@ -24,7 +24,7 @@ const styles = StyleSheet.create({
display: 'block',
opacity: 1,
},
label: {
ctalabel: {
color: '#FFFFFF',
},
});
Expand All @@ -40,7 +40,7 @@ const FloatingCta = ({

return (
<a className={combinedVisibleStyles} href={link} rel="noreferrer noopener" target="_blank">
<p className={css(styles.label)}>{label}</p>
<p className={css(styles.ctalabel)}>{label}</p>
</a>
);
};
Expand Down
2 changes: 1 addition & 1 deletion views/Layout.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export default function Layout(props) {
<link rel="icon" href="/images/favicon.ico" type="image/x-icon" />
<link rel="stylesheet" href="/css/watson-react-components.min.css" />
<link rel="stylesheet" href="/css/style.css" />
<style date-aphrodite>
<style data-aphrodite>
{css.content}
</style>
<script type="text/javascript" src="scripts/bundle.js" defer async />
Expand Down

0 comments on commit 848fdf6

Please sign in to comment.