Spaces:
Runtime error
Runtime error
File size: 853 Bytes
db5855f |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 |
@import '@spark-design/css/components/typography/index.css';
.content-section-header {
display: flex;
flex-wrap: wrap;
align-items: center;
margin-bottom: 1rem;
gap: 0.5rem;
.title-container {
display: flex;
align-items: center;
flex-basis: 330px;
.title {
margin: 0 0.5rem 0 0;
}
.counter {
color: var(--spark-color-carbon-tint1);
margin-right: 1rem;
}
.reset-filters-button {
margin-right: 1rem;
}
}
&-actions {
display: flex;
flex-grow: 1;
justify-content: flex-end;
.edit-filters-button {
margin-right: 1rem;
flex-shrink: 0;
}
.notebooks-search {
max-width: 550px;
width: 100%;
}
.notebooks-sort {
margin-left: 1rem;
max-width: 200px;
}
}
}
|