@testqueryparkui/qp-es-ui
Version:
Query Park UI Components for React
35 lines (27 loc) • 561 B
CSS
.SearchOption {
display: flex;
flex-direction: column;
border-left: 5px solid transparent;
border-right: 5px solid transparent;
padding: 16px;
}
.SearchOption:not(:last-child) {
border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.SearchOption:hover {
border-left: 5px solid #ff9f43;
background-color: rgba(0, 0, 0, 0.05);
}
.Row {
display: flex;
flex-wrap: nowrap;
justify-content: space-between;
align-items: flex-end;
margin: 0 0 8px 0;
}
.Row:last-child {
margin-bottom: 0;
}
.Row > div:nth-child(2n) {
text-align: right;
}