summaryrefslogtreecommitdiff
path: root/web-ui/src/common/link_button/link_button.js
diff options
context:
space:
mode:
Diffstat (limited to 'web-ui/src/common/link_button/link_button.js')
-rw-r--r--web-ui/src/common/link_button/link_button.js32
1 files changed, 10 insertions, 22 deletions
diff --git a/web-ui/src/common/link_button/link_button.js b/web-ui/src/common/link_button/link_button.js
index 17391ce6..05e86a9f 100644
--- a/web-ui/src/common/link_button/link_button.js
+++ b/web-ui/src/common/link_button/link_button.js
@@ -16,42 +16,30 @@
*/
import React from 'react';
-import RaisedButton from 'material-ui/RaisedButton';
+import FlatButton from 'material-ui/FlatButton';
-import '../submit_button/submit_button.scss';
import './link_button.scss';
const labelStyle = {
textTransform: 'none',
- fontSize: '1em',
- lineHeight: '48px',
- color: '#ff9c00'
+ color: 'inherit',
+ fontSize: 'inherit'
};
-const buttonStyle = {
- height: '48px',
- backgroundColor: '#fff'
-};
-
-const overlayStyle = {
- height: '48px'
-};
-
-const style = {
- boxShadow: 'none'
+const linkButtonStyle = {
+ color: 'inherit',
+ borderRadius: '0'
};
const LinkButton = ({ buttonText, href }) => (
- <div className='submit-button link-button'>
- <RaisedButton
+ <div className='link-button'>
+ <FlatButton
href={href}
containerElement='a'
label={buttonText}
labelStyle={labelStyle}
- buttonStyle={buttonStyle}
- overlayStyle={overlayStyle}
- style={style}
- fullWidth
+ hoverColor={'#ff9c00'}
+ style={linkButtonStyle}
/>
</div>
);