Skip to content

Commit

Permalink
fixed grid item width properties
Browse files Browse the repository at this point in the history
  • Loading branch information
hotdoy committed Nov 29, 2019
1 parent 27c146d commit 3c148d4
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# v1.2.19
## 29/11/2019
1. [](#bufix)
* fixed grid item width properties

# v1.2.18
## 28/11/2019
1. [](#improved)
Expand Down
2 changes: 1 addition & 1 deletion blueprints.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: Hotdoy
version: 1.2.18
version: 1.2.19
description: Hotdoy starter theme.
icon: angellist
author:
Expand Down
4 changes: 2 additions & 2 deletions css/grid.css
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@
padding: var(--gutter);
background-color: var(--bg-color);
color: var(--fg-color);
width: calc(var(--item-width-portrait) - calc(var(--gutter)*2));
width: calc(var(--item-width-portrait) - (var(--gutter)*2));
}

@media (min-width: 735px) {
.grid__item{
width: calc(var(--item-width-landscape) - calc(var(--gutter)*2));
width: calc(var(--item-width-landscape) - (var(--gutter)*2));
}
}

Expand Down

0 comments on commit 3c148d4

Please sign in to comment.