comindware.core.ui
Version:
Comindware Core UI provides the basic components like editors, lists, dropdowns, popups that we so desperately need while creating Marionette-based single-page applications.
19 lines (17 loc) • 394 B
CSS
.layout__vertical-layout {
width: 100%;
display: flex;
flex-flow: column nowrap;
flex-shrink: 0;
}
.layout__vertical-layout-title {
font-size: 14px;
font-weight: 500;
display: inline-block;
width: 100%;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
color: var(--theme-colors__text);
margin-bottom: 6px;
}