1
0
mirror of https://github.com/franjsco/tick3t synced 2025-06-05 22:19:18 +02:00

refactoring: refresh design

This commit is contained in:
Francesco Esposito
2019-07-30 19:09:56 +02:00
parent 5d42e01fcf
commit c00ae269f1
11 changed files with 134 additions and 84 deletions

View File

@ -4,7 +4,8 @@ import {
} from 'reactstrap';
const style = {
borderRadius: 20
borderRadius: 20,
backgroundImage: 'linear-gradient(to left, #0eaed3, #8346f6)'
};
class Button extends Component {
@ -20,12 +21,11 @@ class Button extends Component {
onClick={this.props.onClick}
tag={this.props.tag}
to={this.props.to}
color="primary"
style={style}
>
{this.props.children}
{this.props.children}
</ButtonBootstrap>
);
}
}