Skip to content

Commit 1f0a83f

Browse files
committed
feat: add MessageEditor component
1 parent f701474 commit 1f0a83f

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

src/Message/style/message.ts

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,26 @@ export const MessageHeaderBase = styled.withConfig({
9696
flexWrap: "wrap",
9797
});
9898

99+
export const MessageEditor = styled.withConfig({
100+
displayName: "message-editor",
101+
componentId: commonComponentId,
102+
})("input", {
103+
paddingTop: theme.space.xl,
104+
paddingBottom: theme.space.xl,
105+
paddingLeft: theme.space.xxl,
106+
paddingRight: theme.space.large,
107+
backgroundColor: "rgb(56, 58, 64)",
108+
// backgroundColor: theme.colors.primaryOpacity10,
109+
outline: "none",
110+
borderRadius: 8,
111+
border: "none",
112+
color: theme.colors.primaryOpacity80,
113+
fontWeight: 400,
114+
lineHeight: "1.375rem",
115+
width: "100%",
116+
whiteSpace: "pre-wrap",
117+
});
118+
99119
export const AutomodHeaderText = styled.withConfig({
100120
displayName: "automod-header-text",
101121
componentId: commonComponentId,

0 commit comments

Comments
 (0)