Skip to content

Commit d3ec626

Browse files
committed
requested changes: removed padding around screen editor view
1 parent fcfd920 commit d3ec626

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

builder-frontend/src/components/homeScreen/HomeScreen.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { Accessor, createSignal } from "solid-js";
33

44
const HomeScreen = () => {
55
return (
6-
<div class="px-12 py-8 text-gray-700">
6+
<div class="p-2 text-gray-700">
77
<ProjectsList />
88
</div>
99
);
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { Component, createSignal, JSX, ParentProps } from "solid-js";
22

33
export const ViewLayout: Component<ParentProps> = (props) => {
4-
return <div class="px-12 py-8 text-gray-700">{props.children}</div>;
4+
return <div class="p-2 text-gray-700">{props.children}</div>;
55
};

0 commit comments

Comments
 (0)