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;
|
||||
}
|
||||
|
||||
.fullwidth {
|
||||
width: 100%;
|
||||
max-width: none;
|
||||
}
|
||||
|
||||
.noLeftMargin {
|
||||
margin-left: 0 !important;
|
||||
}
|
||||
|
||||
ul.noStyle li {
|
||||
list-style-type: none;
|
||||
}
|
|
@ -19,7 +19,7 @@ html(lang='en')
|
|||
include includes/navbar.pug
|
||||
div.content#pageContent
|
||||
section.section
|
||||
div.container
|
||||
div.container.is-marginless.fullwidth
|
||||
if title
|
||||
h1= config.siteTitle + ' - ' + title
|
||||
else if title !== false
|
||||
|
|
|
@ -2,7 +2,7 @@ extends layout.pug
|
|||
|
||||
block content
|
||||
a.button(href=`/wishlist/${req.user._id}`) My Wishlist
|
||||
ul.noStyle
|
||||
ul.noStyle.noLeftMargin
|
||||
each user in users
|
||||
if req.user._id !== user.id
|
||||
li
|
||||
|
|
Loading…
Reference in a new issue