Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: remove gap between tabs and list #37242

Merged
merged 1 commit into from
Nov 6, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion app/client/src/pages/Editor/IDE/EditorTabs/List.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ import ListQuery from "../EditorPane/Query/List";
import ListJSObjects from "../EditorPane/JS/List";

const ListContainer = styled(Flex)`
position: absolute;
top: 32px;
padding-top: 4px;
& .t--entity-item {
grid-template-columns: 0 auto 1fr auto auto auto auto auto;
height: 32px;
Expand All @@ -24,7 +27,6 @@ export const List = () => {
return (
<ListContainer
bg="var(--ads-v2-color-bg)"
className="absolute top-[36px]" // space for tabs on top and then some padding
data-testid="t--editorpane-list-view"
h="calc(100% - 32px)"
w="100%"
Expand Down
Loading