Spaces:
Running
Running
File size: 1,123 Bytes
79278ec |
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 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 |
.documents-page {
min-width: 700px;
.btn {
line-height: unset;
}
.docs-actions {
display: flex;
gap: 10px;
align-items: center;
justify-content: space-between;
margin-bottom: 10px;
.datasets-name {
font-weight: 700;
}
.actions {
display: flex;
gap: 10px;
}
}
.datasets-actions {
display: flex;
gap: 10px;
align-items: center;
margin-bottom: 50px;
.react-select {
&__control {
border-radius: 10px;
min-width: 200px;
max-width: 700px;
background-color: var(--secondary-color);
&:hover {
cursor: pointer;
}
}
&__option {
&:hover {
cursor: pointer;
}
}
&__single-value {
color: var(--white-color);
}
&__value-container {
text-align: start;
}
&__indicator {
color: var(--white-color);
}
}
}
}
.docs-modal {
padding-left: 20px;
p {
margin: 40px 0 40px 0;
}
.docs-modal-actions {
display: flex;
justify-content: end;
gap: 10px;
}
}
|