16 lines
436 B
CSS
16 lines
436 B
CSS
|
|
.page { display:flex; flex-direction: column; height: 100vh;
|
|
}
|
|
.search { display:flex; gap: 0.375rem; padding: 0.5rem; background:#fff;
|
|
}
|
|
.search uni-input { flex:1; background:#f6f6f6; border-radius: 0.375rem; padding: 0.375rem;
|
|
}
|
|
.list { flex:1;
|
|
}
|
|
.item { padding: 0.625rem 0.75rem; background:#fff; border-bottom: 0.03125rem solid #f1f1f1;
|
|
}
|
|
.name { color:#333; margin-bottom: 0.1875rem;
|
|
}
|
|
.meta { color:#888; font-size: 0.75rem;
|
|
}
|