I tried to make a LESS class to use in a project that rotates the viewport:
.vertical-display (@x:vw,@y:vh) {
.video-container {
width: 100@x;
height: 80@y;
padding: 1@y;
video {
max-height: 75@y;
}
}
When i render this with less i get spaced attributes like: width: 100 vw;
how can I get rid of this space this using less?