I am new in Ionic 2 (well, in Ionic in general) and I am trying to build an application just for learning this framework.
In the application, I have a side Menu and I am trying to have the same behavior that implements the directive “expose-aside-when” in Ionic 1, but I am not able to find it in Ionic 2.
Do you know if this directive is not implemented yet? and, will be it supported in a future?
i have faced same issue in my application.I used below @media css @media (min-width: 767px) {
.menu-content {
-webkit-transform: translate3d(270px, 0px, 0px) !important;
width: ~“calc(100% - 270px)” !important;
}