Fix style for story content

This commit is contained in:
Tom Willemse 2013-07-16 20:53:18 +02:00
parent c1eed7136c
commit 3f5bb27b47
2 changed files with 5 additions and 1 deletions

View file

@ -6,3 +6,7 @@ button.nothing {
background-color: inherit;
border: none;
}
div.normalText {
white-space: pre-wrap;
}

View file

@ -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 || []}