Sorry if my question makes no sense. However in my case i need both to be active for the same style name. Is there any trick to achive this?
.side-nav {
position: fixed;
width: 300px;
left: 0;
z-index: 999;
top: 60px;
margin: 0;
-webkit-transform: translateX(-100%);
transform: translateX(-100%);
height: 100%;
height: calc(100% + 60px);
height: -moz-calc(100%);
padding-bottom: 60px;
padding-top: 30px;
background-color: #fff;
overflow-y: auto;
will-change: transform;
-webkit-backface-visibility: hidden;
backface-visibility: hidden;
-webkit-transform: translateX(-105%);
transform: translateX(-105%);
overflow: visible;
}