diff options
-rw-r--r-- | index.html | 7 | ||||
-rw-r--r-- | style.css | 5 |
2 files changed, 8 insertions, 4 deletions
@@ -21,9 +21,10 @@ ng-show="selected" ng-click="$event.stopPropagation()"> <h3>{{selected.name}}</h3> - <strong>State:</strong> {{selected.data.state}} - <br /> - <a ng-href="{{selected.lastBuild.logs[2][1]}}">Last Build Log</a> + <div class="detail-contents"> + <p><strong>State:</strong> {{selected.data.state}}</p> + <a ng-href="{{selected.lastBuild.logs[2][1]}}">Last Build Log</a> + </div> </div> </div> </div> @@ -76,7 +76,6 @@ h1>span { font-size: 90%; position: absolute; text-align: center; - overflow: auto; width: 100%; top: 45%; } @@ -90,6 +89,10 @@ h1>span { width: 50%; } +.detail-contents { + text-align: left; +} + .container { height: 85%; } |