vuematerial / vue-material

Vue.js Framework - ready-to-use Vue components with Material Design, free forever.
https://www.creative-tim.com/vuematerial
MIT License
9.89k stars 1.15k forks source link

[md-layout] A small suggestion for improvement #2114

Closed Elvanos closed 5 years ago

Elvanos commented 5 years ago

After tinkering with the layout of this awesome pack, I realized that the layout system is missing one relatively important feature of Flex display.

Issue:

The layout module doesn't allow for auto-scaling the width of the md-layout-item elements based on the width of their own content.

Solution:

I propose adding the following code to the Layout module:

.md-layout-item.md-size-auto{
  flex-grow: 0;
  flex-shrink: 1;
}