Skip to content

Commit

Permalink
feat: add more contextual info + credits. closes #20, #21
Browse files Browse the repository at this point in the history
  • Loading branch information
louh committed Aug 4, 2020
1 parent 69d67a3 commit 012bb10
Show file tree
Hide file tree
Showing 5 changed files with 46 additions and 1 deletion.
19 changes: 19 additions & 0 deletions src/components/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,22 @@ body {
min-width: 650px;
text-align: center;
}

footer {
display: flex;
align-items: center;
justify-content: flex-end;
text-align: right;
margin-bottom: 3em;
}

footer span {
margin-right: 1em;
font-size: 0.75rem;
color: #777;
}

footer img {
width: 96px;
height: auto;
}
5 changes: 5 additions & 0 deletions src/components/App.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import Controls from './Controls'
import Script from './Script'
import Filedrop from './Filedrop'
import store from '../store'
import BIF_LOGO from './bif_logo.svg'

// import 'semantic-ui-css/semantic.min.css'
import './App.css'
Expand All @@ -18,6 +19,10 @@ function App (props) {
</div>
<div className="script-pane">
<Script />
<footer>
<span>a project by</span>
<a href="https://biffud.com/"><img src={BIF_LOGO} alt="Bad Idea Factory" /></a>
</footer>
</div>
</div>
<div className="overlays">
Expand Down
6 changes: 5 additions & 1 deletion src/components/Controls.css
Original file line number Diff line number Diff line change
@@ -1,16 +1,20 @@
.controls {
color: #666;
position: fixed;
max-width: 300px;
}

.controls h1 {
margin-top: 0;
margin-bottom: 1.5em;
text-transform: uppercase;
text-decoration: underline;
font-family: 'Courier New', monospace;
}

.lede {
margin-bottom: 1.5em;
}

.properties {
margin-bottom: 2em;
}
Expand Down
4 changes: 4 additions & 0 deletions src/components/Controls.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,10 @@ function Controls (props) {
return (
<div className="controls">
<h1>Scriptchat</h1>
<p className="lede">
Scriptchat turns your Slack transcripts into screenplays.
This project is open source! For more information, check out our <a href="https://github.com/badideafactory/scriptchat">GitHub repository.</a>
</p>
<div className="properties">
<Input
label="Screenplay title"
Expand Down
13 changes: 13 additions & 0 deletions src/components/bif_logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 012bb10

Please sign in to comment.