Skip to content
This repository has been archived by the owner on Sep 1, 2023. It is now read-only.

Commit

Permalink
feat(navigation): shrink/grow to label/min-width/max-width
Browse files Browse the repository at this point in the history
  • Loading branch information
herteleo committed Apr 20, 2019
1 parent 6606f6f commit e47754f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/App.vue
Expand Up @@ -54,17 +54,18 @@ export default {
display: grid;
grid-auto-flow: dense;
grid-template-columns: [aside] config('width.64') [main] auto;
grid-template-columns: [aside] min-content [main] auto;
grid-template-rows: 100vh;
}
.app--sidebar-right {
grid-template-columns: [main] auto [aside] config('width.64');
grid-template-columns: [main] auto [aside] min-content;
}
.aside {
@apply flex flex-col;
grid-column: aside;
max-width: config('width.64');
}
.aside__header {
Expand Down

0 comments on commit e47754f

Please sign in to comment.