Skip to content

Commit 92e2c50

Browse files
committed
adjust height of list container
1 parent 10c28ff commit 92e2c50

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

src/views/Home.jsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ import { useVoiceToText } from '../utils';
77
import DeleteIcon from '@mui/icons-material/Delete';
88
import KeyboardVoiceIcon from '@mui/icons-material/KeyboardVoice';
99
import RemoveCircleIcon from '@mui/icons-material/RemoveCircle'; //remove shopping list that are being shared with
10-
import BasicModal from './Modal';
1110

1211
export function Home({ data, setListPath, setAllLists }) {
1312
const [listName, setListName] = useState('');

src/views/List.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@ export function List({ data, userId, path }) {
110110
</button>
111111
{filterVal && <button>Clear</button>}
112112
</form>
113-
<div className="flex flex-col h-[80vh] my-8 p-8 rounded-3xl shadow-xl overflow-hidden mx-auto bg-neutral">
113+
<div className="flex flex-col h-[60vh] my-8 p-8 rounded-3xl shadow-xl overflow-hidden mx-auto bg-neutral">
114114
<ul className="space-y-2 font-archivo flex-grow overflow-y-auto space-y-4 ">
115115
{filteredObject &&
116116
Object.entries(filteredObject).map(([timeBucket, list]) => (

0 commit comments

Comments
 (0)