Fix scrolling on home and history

This commit is contained in:
Saoud Rizwan
2024-09-11 14:46:15 -04:00
parent 999abacd48
commit 1b41ee0a6b
4 changed files with 12 additions and 6 deletions

View File

@@ -98,7 +98,7 @@ const HistoryView = ({ onDone }: HistoryViewProps) => {
<h3 style={{ color: "var(--vscode-foreground)", margin: 0 }}>History</h3>
<VSCodeButton onClick={onDone}>Done</VSCodeButton>
</div>
<div style={{ padding: "5px 17px" }}>
<div style={{ padding: "5px 17px 10px 17px" }}>
<VSCodeTextField
style={{ width: "100%" }}
placeholder="Search history..."
@@ -147,7 +147,6 @@ const HistoryView = ({ onDone }: HistoryViewProps) => {
style={{
flexGrow: 1,
overflowY: "scroll",
scrollbarWidth: "none",
}}
data={taskHistorySearchResults}
itemContent={(index, item) => (