Skip to content
This repository was archived by the owner on Nov 17, 2023. It is now read-only.

Commit 23a1124

Browse files
committed
fix: css layout chat issues
1 parent 0d712bb commit 23a1124

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/components/Field.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ const getMaxCharacters = (
2828

2929
const Field = (props: InputProps) =>
3030
isTextArea(props) ? (
31-
<div className="relative">
31+
<div className="relative w-full">
3232
<TextareaAutosizeElement
3333
required
3434
variant="filled"

src/pages/PluginEditor/PluginEditorContainer.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,9 @@ const PluginEditorContainer = () => {
1212
return (
1313
<div>
1414
<PluginEditorTitle />
15-
<div className="flex flex-col md:flex-row">
15+
<div className="flex flex-col items-end md:flex-row md:items-start">
1616
<BoxContainer
17-
className="basis-2/6 sticky top-20 h-min z-10 md:mt-6"
17+
className="basis-2/6 sticky top-20 h-min z-10 md:mt-6 w-fit"
1818
removePadding
1919
removeMargin
2020
>

0 commit comments

Comments
 (0)