File size: 1,358 Bytes
db242f8 |
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 |
//@import '@radix-ui/colors/gray.css';
//@import '@radix-ui/colors/teal.css';
//@import '@radix-ui/colors/gray-dark.css';
//@import '@radix-ui/colors/teal-dark.css';
.option-list-root {
background-color: var(--gray-2);
display: flex;
flex-direction: column;
max-width: 100%;
box-shadow: 0 2px 10px var(--gray-11);
padding: 20px;
}
.option-list-item {
width: 100%;
display: flex;
flex-direction: column;
justify-content: space-between;
transition: all 0.3s ease-in-out;
.item-main-area {
height: 70px;
align-items: center;
display: flex;
justify-content: space-between;
padding: 10px;
border-bottom: 1px solid var(--gray-4);
transition: all 0.3s ease;
.item-info {
display: flex;
flex-direction: column;
align-items: baseline;
.label {
font-size: 1rem;
font-weight: 600;
}
.description {
font-size: 0.8rem;
font-weight: 300;
margin-top: 5px;
}
}
.item-value {
display: flex;
align-items: center;
}
}
.item-additional-area {
padding-left: 50px;
}
}
.option-list-item-nested {
.item-main-area {
}
}
|