summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulie Lala <jules@okfoc.us>2014-08-13 02:33:01 -0400
committerJulie Lala <jules@okfoc.us>2014-08-13 02:35:12 -0400
commit0d971464a2af8ec795664fb3e6f50b888dcccf53 (patch)
treebb8506793674c8fb8e3ad1f1be1b0dcb7c17e730
parent5d1bb038332c540d8abe459092648a7b5ddfe734 (diff)
style fixes
-rwxr-xr-xpublic/assets/stylesheets/app.css14
-rw-r--r--server/lib/views.js4
2 files changed, 10 insertions, 8 deletions
diff --git a/public/assets/stylesheets/app.css b/public/assets/stylesheets/app.css
index 36cccef..e15ba84 100755
--- a/public/assets/stylesheets/app.css
+++ b/public/assets/stylesheets/app.css
@@ -158,13 +158,15 @@ h5 {
.page .profile {
color:white;
}
-.page table{
- width:100%;
- height:400px;
- border-top:1px solid;
- margin:40px 0 0 0;
+.page table {
+ width: 100%;
+ border-top: 1px solid;
+ margin: 40px 0 0 0;
border-spacing: 0;
- clear:both;
+ clear:nboth;
+}
+.page tr {
+ height: 400px;
}
.page table.showcase {
height:70vh;
diff --git a/server/lib/views.js b/server/lib/views.js
index d619d71..b776582 100644
--- a/server/lib/views.js
+++ b/server/lib/views.js
@@ -36,7 +36,7 @@ views.editor = function (req, res) {
date: moment(req.project.updated_at).format("M/DD/YYYY"),
author: user.displayName,
authorlink: "/profile/" + user.username,
- noui: !! (req.query.noui === 1),
+ noui: !! (req.query.noui === '1'),
})
})
}
@@ -61,7 +61,7 @@ views.reader = function (req, res) {
date: moment(req.project.updated_at).format("M/DD/YYYY"),
author: user.displayName,
authorlink: "/profile/" + user.username,
- noui: !! (req.query.noui === 1),
+ noui: !! (req.query.noui === '1'),
})
})
}