Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

suggestion: state-not mixin #41

Open
djurnamn opened this issue Jun 21, 2020 · 0 comments
Open

suggestion: state-not mixin #41

djurnamn opened this issue Jun 21, 2020 · 0 comments
Labels
enhancement New feature or request scss Sass

Comments

@djurnamn
Copy link
Member

djurnamn commented Jun 21, 2020

when we call the state mixin with name and value there's currently no way of negating it.

for example, instead of doing:

.menu-drawer {
        @include state(drawer, false) {
                display: none;
        }

        @include state(drawer, search) {
                display: none;
        }
}

.search-drawer {
        @include state(drawer, false) {
                display: none;
        }

        @include state(drawer, menu) {
                display: none;
        }
}

maybe we should be able to do something like this:

.menu-drawer {
        @include state-not(drawer, menu) {
                display: none;
        }
}

.search-drawer {
        @include state-not(drawer, search) {
                display: none;
        }
}
@djurnamn djurnamn added enhancement New feature or request scss Sass labels Jun 21, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request scss Sass
Projects
None yet
Development

No branches or pull requests

1 participant