Ronald 9d21736e9f
Add UI copyright headers files (#16614)
* Add copyright headers to UI files

* Ensure copywrite file ignores external libs
2023-03-14 09:18:55 -04:00

28 lines
623 B
SCSS

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
%dom-recycling-table {
position: relative;
}
%dom-recycling-table tr {
display: flex;
}
%dom-recycling-table tr > * {
flex: 1 0 auto;
/* this means no simple CSS driven tooltips in dom-recycling tables */
/* ideally the thing inside the td should be overflow hidden */
overflow: hidden;
}
%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;
}