Skip to content

Commit

Permalink
Padding adjustment to line up bottom and side
Browse files Browse the repository at this point in the history
  • Loading branch information
kglovern committed Aug 19, 2024
1 parent 6e41588 commit d3b674a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/app/src/components/Widget/Content.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ const Content: React.FC<WidgetProps> = ({ className, active, ...props }) => (
{...props}
className={classNames(
className,
"flex items-stretch border-solid border-[1px] border-gray-200 relative rounded-lg " +
"p-4 h-full min-w-80 bg-gray-100 " +
"flex items-stretch border-solid border-[1px] border-gray-300 relative rounded-lg " +
"p-4 h-full min-w-80 bg-gray-50 " +
"[@media(max-width: 639px),(max-device-width: 639px)]: p-2"
)}
/>
Expand Down
2 changes: 1 addition & 1 deletion src/app/src/workspace/ToolArea/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {Tools} from "../../features/Tools";

export const ToolArea = () => {
return (
<div className="p-1 flex-1 flex gap-2 box-border">
<div className="flex-1 flex gap-2 box-border">
<div className="w-full p-1 box-border">
<FileControl />
</div>
Expand Down

0 comments on commit d3b674a

Please sign in to comment.