Remove some whitespace
This commit is contained in:
parent
e68d1047aa
commit
0117e0aebe
3 changed files with 11 additions and 2 deletions
|
@ -9,6 +9,15 @@
|
||||||
border: none;
|
border: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.fullwidth {
|
||||||
|
width: 100%;
|
||||||
|
max-width: none;
|
||||||
|
}
|
||||||
|
|
||||||
|
.noLeftMargin {
|
||||||
|
margin-left: 0 !important;
|
||||||
|
}
|
||||||
|
|
||||||
ul.noStyle li {
|
ul.noStyle li {
|
||||||
list-style-type: none;
|
list-style-type: none;
|
||||||
}
|
}
|
|
@ -19,7 +19,7 @@ html(lang='en')
|
||||||
include includes/navbar.pug
|
include includes/navbar.pug
|
||||||
div.content#pageContent
|
div.content#pageContent
|
||||||
section.section
|
section.section
|
||||||
div.container
|
div.container.is-marginless.fullwidth
|
||||||
if title
|
if title
|
||||||
h1= config.siteTitle + ' - ' + title
|
h1= config.siteTitle + ' - ' + title
|
||||||
else if title !== false
|
else if title !== false
|
||||||
|
|
|
@ -2,7 +2,7 @@ extends layout.pug
|
||||||
|
|
||||||
block content
|
block content
|
||||||
a.button(href=`/wishlist/${req.user._id}`) My Wishlist
|
a.button(href=`/wishlist/${req.user._id}`) My Wishlist
|
||||||
ul.noStyle
|
ul.noStyle.noLeftMargin
|
||||||
each user in users
|
each user in users
|
||||||
if req.user._id !== user.id
|
if req.user._id !== user.id
|
||||||
li
|
li
|
||||||
|
|
Loading…
Reference in a new issue