mirror of
https://git.um-react.app/um/um-react.git
synced 2025-11-28 11:33:02 +00:00
fix: adjust layout for settings
This commit is contained in:
@@ -9,9 +9,9 @@ export interface KeyListContainerProps {
|
||||
export function KeyListContainer({ keys, children, ref }: KeyListContainerProps) {
|
||||
const count = keys.length;
|
||||
return (
|
||||
<div ref={ref} className="flex grow min-h-0 overflow-auto pr-4 pt-3">
|
||||
<div ref={ref} className="flex grow min-h-0 pr-4 pt-3">
|
||||
{count > 0 && (
|
||||
<ul className="list bg-base-100 rounded-box shadow-md border border-base-300 w-full min-h-0 max-h-[30rem] overflow-auto">
|
||||
<ul className="list bg-base-100 rounded-box shadow-sm border border-base-300 w-full min-h-0 overflow-auto">
|
||||
{children}
|
||||
</ul>
|
||||
)}
|
||||
|
||||
Reference in New Issue
Block a user