diff --git a/app/client/src/components/editorComponents/Debugger/DebuggerLogs.tsx b/app/client/src/components/editorComponents/Debugger/DebuggerLogs.tsx index dfa0bb7df7..9a7ed9316a 100644 --- a/app/client/src/components/editorComponents/Debugger/DebuggerLogs.tsx +++ b/app/client/src/components/editorComponents/Debugger/DebuggerLogs.tsx @@ -23,6 +23,7 @@ const ListWrapper = styled.div` overflow: auto; height: calc(100% - ${LIST_HEADER_HEIGHT}); ${thinScrollbar}; + padding-bottom: 25px; `; type Props = { diff --git a/app/client/src/components/editorComponents/Debugger/Errors.tsx b/app/client/src/components/editorComponents/Debugger/Errors.tsx index bc27f45fe4..9234a28add 100644 --- a/app/client/src/components/editorComponents/Debugger/Errors.tsx +++ b/app/client/src/components/editorComponents/Debugger/Errors.tsx @@ -18,6 +18,7 @@ const ListWrapper = styled.div` overflow: auto; ${thinScrollbar}; height: 100%; + padding-bottom: 25px; `; function Errors(props: { hasShortCut?: boolean }) {