You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For internal development, we have to create applications that manage a lot of information and displaying it becomes a headache due to the width limitation of our templates.
Having more space available would make our interfaces more optimized and more adapted for our needs.
It will also increase the user experience as well.
Are we planning to add support for a full width template?
Can I help or contribute to that?
Technical notes
Since WET is built on top of bootstrap, we have access to almost every CSS class that bootstrap expose.
The template main elements has the class container which add a limit to the max width.
Ex:
media (min-width: 1200px) {
.container {
width:1170px;
}
}
By adding the class container-fluid, it would allow dev team to exploit more width and then, improve our users experience.
I did a small test just by replacing the main dom element class from container to container-fluid.
The text was updated successfully, but these errors were encountered:
Context
For internal development, we have to create applications that manage a lot of information and displaying it becomes a headache due to the width limitation of our templates.
Having more space available would make our interfaces more optimized and more adapted for our needs.
It will also increase the user experience as well.
Are we planning to add support for a full width template?
Can I help or contribute to that?
Technical notes
container
which add a limit to the max width.Ex:
By adding the class
container-fluid
, it would allow dev team to exploit more width and then, improve our users experience.I did a small test just by replacing the main dom element class from
container
tocontainer-fluid
.The text was updated successfully, but these errors were encountered: