diff options
| author | 2013-07-16 20:53:18 +0200 | |
|---|---|---|
| committer | 2013-07-16 20:53:18 +0200 | |
| commit | 3f5bb27b47dcb4ac64fe89b396c5d66feb03d630 (patch) | |
| tree | 5afcd2c68d5397685531e89cbb9a483196457693 /static | |
| parent | c1eed7136c6298afe1638c0f748e37742d9088b6 (diff) | |
| download | scrumli-3f5bb27b47dcb4ac64fe89b396c5d66feb03d630.tar.gz scrumli-3f5bb27b47dcb4ac64fe89b396c5d66feb03d630.zip | |
Fix style for story content
Diffstat (limited to 'static')
| -rw-r--r-- | static/css/scrumli.css | 4 | ||||
| -rw-r--r-- | static/js/main.js | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/static/css/scrumli.css b/static/css/scrumli.css index 7399c15..ef4c151 100644 --- a/static/css/scrumli.css +++ b/static/css/scrumli.css @@ -6,3 +6,7 @@ button.nothing { background-color: inherit; border: none; } + +div.normalText { + white-space: pre-wrap; +} diff --git a/static/js/main.js b/static/js/main.js index b6c36f9..28a1d00 100644 --- a/static/js/main.js +++ b/static/js/main.js @@ -133,7 +133,7 @@ var StoryData = React.createClass({ return (<div> <h1>{this.state.data.title}</h1> Assignee: {this.state.data.assignee} - <div class="well"> + <div class="well normalText"> {this.state.data.content} </div> <StoryTaskTable tasks={this.state.data.tasks || []} |
