Skip to content

Commit

Permalink
style: prompt input style adjusted
Browse files Browse the repository at this point in the history
  • Loading branch information
KwokKwok committed Dec 7, 2024
1 parent 850613c commit e793444
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 26 deletions.
24 changes: 1 addition & 23 deletions excalidraw-app/App.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -1012,7 +1012,7 @@ const ExcalidrawWrapper = () => {
},
},
{
label: "GitHub(Original)",
label: "GitHub",
icon: GithubIcon,
category: DEFAULT_CATEGORIES.links,
predicate: true,
Expand All @@ -1033,28 +1033,6 @@ const ExcalidrawWrapper = () => {
);
},
},
{
label: "GitHub(Current fork)",
icon: GithubIcon,
category: DEFAULT_CATEGORIES.links,
predicate: true,
keywords: [
"issues",
"bugs",
"requests",
"report",
"features",
"social",
"community",
],
perform: () => {
window.open(
"https://github.com/KwokKwok/excalidraw",
"_blank",
"noopener noreferrer",
);
},
},
{
label: t("labels.followUs"),
icon: XBrandIcon,
Expand Down
8 changes: 5 additions & 3 deletions packages/excalidraw/components/TextInput.scss
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,17 @@
display: block;
height: auto !important;
overflow-y: auto;
padding: 0.4em !important;
padding: 0 !important;
textarea {
height: auto;
min-height: 100px;
border: none !important;
outline: none !important;
text-wrap: auto !important;
resize: vertical !important;
width: 100% !important;
padding: 0.6em !important;
padding: 0.6em 1em !important;
line-height: 1.5 !important;
background: transparent !important;
}
}
}

0 comments on commit e793444

Please sign in to comment.