42 lines
748 B
SCSS
42 lines
748 B
SCSS
.scrollbar-placeholder {
|
|
width: 11px;
|
|
padding: 0 !important;
|
|
}
|
|
|
|
.table-header-actions {
|
|
display: flex;
|
|
flex: 1;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
gap: 10px;
|
|
}
|
|
|
|
.header-item {
|
|
background-color: var(--iqser-btn-bg);
|
|
height: 50px;
|
|
display: flex;
|
|
align-items: center;
|
|
z-index: 1;
|
|
border-bottom: 1px solid var(--iqser-separator);
|
|
box-sizing: border-box;
|
|
padding: 0 24px;
|
|
gap: 10px;
|
|
|
|
.header-title {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
}
|
|
|
|
&.selection-enabled {
|
|
padding: 0 24px 0 10px;
|
|
}
|
|
|
|
.actions {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: flex-end;
|
|
gap: 16px;
|
|
}
|
|
}
|