Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions app/assets/stylesheets/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
margin-right: auto;
}

body {
padding: 0px 15px 15px 15px;

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Shorthands of length 4 are not allowed. Value was 0px 15px 15px 15px
Shorthand form for property padding should be written more concisely as 0px 15px 15px instead of 0px 15px 15px 15px
0px should be written without units as 0

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oh hound, I hate css so much.

}

.navbar {
padding-left: 15px;
}

h2 {
text-align: center;
}
Expand Down