I configured a style lfg_content as flexbox parent. Later on, I found out that I use this a lot in my app - but not as flexbox.
So I tried to revert this.
I added new styles for flexbox.
I changed the layout from flexbox to block. Nevertheless the style generates.
So i removed that style from all divs, cleaned it up and recreated it again (cumbersone:-)
Probably a bug or pls let me know how to reset that style.
.lfg_content {
-webkit-box-pack: start;
-webkit-justify-content: flex-start;
-ms-flex-pack: start;
justify-content: flex-start;
-webkit-flex-wrap: wrap;
-ms-flex-wrap: wrap;
flex-wrap: wrap;
-webkit-align-self: stretch;
-ms-flex-item-align: stretch;
align-self: stretch;
-webkit-box-ordinal-group: 1;
-webkit-order: 0;
-ms-flex-order: 0;
order: 0;
-webkit-box-flex: 0;
-webkit-flex: 0 0 auto;
-ms-flex: 0 0 auto;
flex: 0 0 auto;