首次提交by MimoCode
This commit is contained in:
@@ -0,0 +1,47 @@
|
||||
.search-page {
|
||||
padding: var(--adm-spacing-md);
|
||||
}
|
||||
|
||||
.searching {
|
||||
text-align: center;
|
||||
color: var(--color-text-light);
|
||||
padding: var(--adm-spacing-lg);
|
||||
}
|
||||
|
||||
.search-results {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: var(--adm-spacing-md);
|
||||
}
|
||||
|
||||
.result-item {
|
||||
cursor: pointer;
|
||||
transition: transform 0.2s;
|
||||
}
|
||||
|
||||
.result-item:active {
|
||||
transform: scale(0.98);
|
||||
}
|
||||
|
||||
.result-name {
|
||||
font-size: var(--adm-font-size-lg);
|
||||
font-weight: 600;
|
||||
margin-bottom: var(--adm-spacing-xs);
|
||||
}
|
||||
|
||||
.result-generic {
|
||||
font-size: var(--adm-font-size-sm);
|
||||
color: var(--color-text-secondary);
|
||||
margin-bottom: var(--adm-spacing-xs);
|
||||
}
|
||||
|
||||
.result-indications {
|
||||
font-size: var(--adm-font-size-sm);
|
||||
color: var(--color-text-light);
|
||||
margin-bottom: var(--adm-spacing-xs);
|
||||
}
|
||||
|
||||
.result-quantity {
|
||||
font-size: var(--adm-font-size-sm);
|
||||
color: var(--adm-color-primary);
|
||||
}
|
||||
Reference in New Issue
Block a user