Skip to content

Commit

Permalink
Add output filename label
Browse files Browse the repository at this point in the history
  • Loading branch information
jakedex committed Mar 1, 2017
1 parent 7e5aecb commit d991690
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
2 changes: 1 addition & 1 deletion main.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const mb = menubar({
alwaysOnTop: true,
resizable: false,
width: 292,
height: 314,
height: 324,
icon: `${__dirname}/img/iconTemplate.png`
})

Expand Down
2 changes: 2 additions & 0 deletions src/components/Converter.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,9 @@ class Sanitizer extends Component {
case STAGING: return (
<div className="staging">
{/* TODO make this compose better */}
<label htmlFor="outputFileName">FILENAME</label>
<input
id="outputFileName"
type="text"
value={displayOutputFileName(this.state.outputType)(this.state.files)}
/>
Expand Down
7 changes: 7 additions & 0 deletions styles/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,13 @@ p {
width: 100%;
height: 100%;

label {
font-size: 10.2px;
margin-bottom: 4px;
font-weight: bold;
color: rgba(0, 0, 0, 0.3);
}

input {
border: 1px solid rgba(255, 255, 255, 0);
border-radius: 2px;
Expand Down

0 comments on commit d991690

Please sign in to comment.