Skip to content
This repository has been archived by the owner on Apr 30, 2020. It is now read-only.

Commit

Permalink
fix(Components/ListPosts): fix wrong case on css import in partials p…
Browse files Browse the repository at this point in the history
…ath (#226)
  • Loading branch information
usingthesystem authored and Doğa Gürdal committed Jun 16, 2017
1 parent e332e40 commit f86a6f0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions Components/ListPosts/howto.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
```stylus
.flyntComponent[is="flynt-list-posts"]
.listPosts
@import 'partials/Tags/_style'
@import 'Partials/Tags/_style'
```

`Partials/PostTeaser/index.twig`
Expand Down Expand Up @@ -71,7 +71,7 @@
```stylus
.flyntComponent[is="flynt-list-posts"]
.listPosts
@import 'partials/Categories/_style'
@import 'Partials/Categories/_style'
```

`Partials/PostTeaser/index.twig`
Expand Down Expand Up @@ -123,7 +123,7 @@ $containerPadding = lookup('$globalContainerPadding') || 15px
```stylus
.flyntComponent[is="flynt-list-posts"]
.listPosts
@import 'partials/AllPostsCta/_style'
@import 'Partials/AllPostsCta/_style'
```

## Automatic Post Teaser list by selecting a post type
Expand Down
4 changes: 2 additions & 2 deletions Components/ListPosts/style.styl
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ $containerMaxWidth = lookup('$globalContainerMaxWidth') || 1140px
margin: 0
padding: 0

@import 'partials/PostTeaser/_style'
@import 'partials/PaginationButtons/_style'
@import 'Partials/PostTeaser/_style'
@import 'Partials/PaginationButtons/_style'

0 comments on commit f86a6f0

Please sign in to comment.