Skip to content

Commit

Permalink
Make holding input full width.
Browse files Browse the repository at this point in the history
  • Loading branch information
martinek committed Dec 11, 2017
1 parent 061bffa commit ddecf5d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/Editor.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,15 @@ const ItemForm = ({fSyms, item, onChange, onRemove}) => {
};

return (
<div className="field has-addons">
<div className="field has-addons is-fullwidth">
<p className="control">
<button className="button is-danger" onClick={onRemove}>
<span className="icon">
<span className="fas fa-minus fa-sm" />
</span>
</button>
</p>
<p className="control">
<p className="control is-expanded">
<input
className="input has-text-right"
value={item.amount || 0}
Expand Down

0 comments on commit ddecf5d

Please sign in to comment.