open-consul/ui-v2/app/styles/components/dom-recycling-table/layout.scss
Dmitry Shemin 979570c7a3 ui: [bugfix] Tag wrapping on detail pages (#6478)
Makes sure that tags wrap on the detail pages for service and nodes whilst making sure they don't wrap on the listing pages.
2019-09-17 17:29:04 +01:00

20 lines
386 B
SCSS

%dom-recycling-table {
position: relative;
}
%dom-recycling-table tr {
display: flex;
}
%dom-recycling-table tr > * {
flex: 1 0 auto;
}
%dom-recycling-table tbody {
/* important required as ember-collection will inline an overflow: visible*/
overflow-x: hidden !important;
}
%dom-recycling-table dd {
flex-wrap: nowrap;
}
%dom-recycling-table dd > * {
margin-bottom: 0;
}