.backend-layout {
background-image: linear-gradient(to bottom, white, #ccc);
display: grid;
grid-template-columns: auto;
grid-template-rows: 0 40px minmax(40vh, 100vh) 40px;
height: 100vh;
}
is it possible to align height
value with other attributes of the class automatically (--fix option) via eslint or stylelint?
Dmitry