Skip to content

Commit

Permalink
fix(styles): missing padding variable for offset elements
Browse files Browse the repository at this point in the history
  • Loading branch information
sparanoid committed Dec 22, 2015
1 parent 03c4226 commit f83f2cb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions _app/assets/themes/curtana/_less/common.less
Original file line number Diff line number Diff line change
Expand Up @@ -279,7 +279,7 @@ body:hover .latest {
}

> p {
padding-left: .8em;
padding-left: @space-xs;
border-left: @border-default solid;
// TODO: Need better solution
// We will reset the common margin-bototm to get gapless borders for blockquotes
Expand Down Expand Up @@ -509,7 +509,7 @@ body:hover .latest {
.note,
.store,
.download {
padding-left: .8em;
padding-left: @space-xs;
margin-left: calc(-@space-xs - @border-default);
border-left: @border-default solid @link-color;

Expand Down
2 changes: 1 addition & 1 deletion _app/assets/themes/curtana/_less/variables.less
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
@space-lg: 22vw;
@space-md: 8vw;
@space-sm: 4vw;
@space-xs: 1vw;
@space-xs: 1.2vw;
@space-default: @space-md;

@border-lg: 4px;
Expand Down

0 comments on commit f83f2cb

Please sign in to comment.