mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-21 21:15:24 +08:00

Each directive applies a different class so they won’t remove each other if they’re on the same element. If either class is applied the element won’t display. closes #5836
15 lines
259 B
SCSS
15 lines
259 B
SCSS
@import "../../globals.core";
|
|
|
|
// Show / Hide When
|
|
// --------------------------------------------------
|
|
|
|
// Applied by the showWhen directive
|
|
.hidden-show-when {
|
|
display: none;
|
|
}
|
|
|
|
// Applied by the hideWhen directive
|
|
.hidden-hide-when {
|
|
display: none;
|
|
}
|