Skip to content
This repository has been archived by the owner on Sep 10, 2019. It is now read-only.

Make visibility classes more automatic #110

Closed
gakimball opened this issue Nov 20, 2014 · 0 comments
Closed

Make visibility classes more automatic #110

gakimball opened this issue Nov 20, 2014 · 0 comments
Assignees

Comments

@gakimball
Copy link
Contributor

The Foundation for Apps visibility classes should mimic the ones in Foundation 5, which affect all breakpoints with a single class. For example, this is the current Apps implementation:

.show-for-medium {
  @include breakpoint(medium) {
    display: block !important;
  }
}

It should work like this:

.show-for-medium {
  display: none !important;

  @include breakpoint(medium) {
    display: block !important;
  }
}
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Development

No branches or pull requests

1 participant