Skip to content
Snippets Groups Projects
Commit a24e5a5d authored by Yannis Barlas's avatar Yannis Barlas
Browse files

zero stylelint errors

parent 26b884e2
No related branches found
No related tags found
No related merge requests found
.root {
display: grid;
grid-template-columns: 1fr 3fr;
grid-template-areas: "side content";
grid-template-columns: 1fr 3fr;
height: 100vh;
width: 100vw;
}
.sidebar {
grid-area: side;
display: flex;
flex-direction: column;
grid-area: side;
overflow-y: hidden;
}
.content {
grid-area: content;
padding: 1rem;
overflow-y: auto;
padding: 1rem;
}
.header {
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment