summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--index.html7
-rw-r--r--style.css5
2 files changed, 8 insertions, 4 deletions
diff --git a/index.html b/index.html
index e01daeb..ac6b62d 100644
--- a/index.html
+++ b/index.html
@@ -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>
diff --git a/style.css b/style.css
index 0a568af..2bcc6d1 100644
--- a/style.css
+++ b/style.css
@@ -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%;
}