Skip to content

Commit

Permalink
Lightmode fix, add borders to nested inputs (#64)
Browse files Browse the repository at this point in the history
  • Loading branch information
jacoblee93 authored Oct 19, 2023
1 parent 23827b3 commit 05afa7f
Show file tree
Hide file tree
Showing 4 changed files with 4,948 additions and 2,775 deletions.
2 changes: 1 addition & 1 deletion langserve/playground/src/components/CustomTextAreaCell.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ export const TextAreaCell = (props: CellProps & VanillaRendererProps) => {
onChange={(ev) =>
handleChange(path, ev.target.value === "" ? undefined : ev.target.value)
}
className={className}
className={className + " border border-divider-700 rounded-lg py-1 px-2"}
style={{ width: "100%", fontSize: "18px" }}
id={id}
disabled={!enabled}
Expand Down
2 changes: 1 addition & 1 deletion langserve/playground/src/components/JsonTextAreaCell.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ export const TextAreaCell = (props: CellProps & VanillaRendererProps) => {
ev.target.value === "" ? undefined : tryJsonParse(ev.target.value)
)
}
className={className}
className={className + " border border-divider-700 rounded-lg py-1 px-2"}
style={{ width: "100%", fontSize: "18px" }}
id={id}
disabled={!enabled}
Expand Down
2 changes: 1 addition & 1 deletion langserve/playground/src/components/NoBorderTableCell.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ import { TableCell } from "@mui/material";

const StyledTableCell = styled(TableCell)({
borderBottom: "none",
color: "white",
fill: "white",
color: "inherit",
padding: 0,
});

Expand Down
Loading

0 comments on commit 05afa7f

Please sign in to comment.