Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
changes order of media query
  • Loading branch information
brianecook88 committed Jul 24, 2019
commit bad16d6102e2543fc5e44c078a88042a81599c10
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -325,10 +325,10 @@ If this h1 style is used in a new context, we need to do extra work to locate an
```scss
.selector {
//...
&:after {
@media (min-width: $bp-tablet) {
//...
}
@media (min-width: $bp-tablet) {
&:after {
//...
}
&.selector--modifier {
Expand Down