mirror of
https://github.com/scratchfoundation/scratch-www.git
synced 2025-02-16 16:19:48 -05:00
Removing Extra spaces from Button
This commit is contained in:
parent
d3ebcd6744
commit
f5351b651a
2 changed files with 3 additions and 3 deletions
|
@ -11,7 +11,7 @@ module.exports = React.createClass({
|
|||
var classes = classNames(
|
||||
'button',
|
||||
this.props.className
|
||||
);
|
||||
);
|
||||
return (
|
||||
<button {... this.props} className={classes} >{this.props.children}</button>
|
||||
);
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
.button {
|
||||
display: inline-block;
|
||||
display: inline-block;
|
||||
font-size: .8rem;
|
||||
padding: .75em 1em;
|
||||
margin: .5em 0;
|
||||
|
@ -9,7 +9,7 @@
|
|||
border-radius: 5px;
|
||||
box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.25);
|
||||
cursor: pointer;
|
||||
border: none;
|
||||
border: none;
|
||||
|
||||
&.white {
|
||||
background-color: white;
|
||||
|
|
Loading…
Reference in a new issue