mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
style: remirror for comments height, sidebar z-index
This commit is contained in:
parent
1e3af2e9e2
commit
8474b400b0
@ -1,4 +0,0 @@
|
||||
NEXT_PUBLIC_API_BASE_URL = "<-- endpoint goes here -->"
|
||||
NEXT_PUBLIC_GOOGLE_CLIENTID = "<-- google client id goes here -->"
|
||||
NEXT_PUBLIC_GITHUB_ID = "<-- github id goes here -->"
|
||||
NEXT_PUBLIC_APP_ENVIRONMENT="<-- production | development -->"
|
@ -83,7 +83,7 @@ const AddIssueComment: React.FC<{
|
||||
return (
|
||||
<div className="space-y-5">
|
||||
<form onSubmit={handleSubmit(onSubmit)}>
|
||||
<div className="rounded-md p-2 pt-3">
|
||||
<div className="issue-comments-section rounded-md p-2 pt-3">
|
||||
<Controller
|
||||
name="comment_html"
|
||||
control={control}
|
||||
|
@ -47,7 +47,7 @@ const Sidebar: React.FC<Props> = ({ toggleSidebar, setToggleSidebar }) => {
|
||||
const { collapsed: sidebarCollapse, toggleCollapsed } = useTheme();
|
||||
|
||||
return (
|
||||
<nav className="relative z-40 h-screen">
|
||||
<nav className="relative z-20 h-screen md:z-0">
|
||||
<div
|
||||
className={`${sidebarCollapse ? "" : "w-auto md:w-60"} fixed inset-y-0 top-0 ${
|
||||
toggleSidebar ? "left-0" : "-left-60 md:left-0"
|
||||
|
@ -86,7 +86,7 @@ const ProjectModules: NextPage = () => {
|
||||
description={
|
||||
<span>
|
||||
Use <pre className="inline rounded bg-gray-100 px-2 py-1">Ctrl/Command + M</pre>{" "}
|
||||
shortcut to create a new cycle
|
||||
shortcut to create a new module
|
||||
</span>
|
||||
}
|
||||
Icon={PlusIcon}
|
||||
|
@ -358,6 +358,10 @@ img.ProseMirror-separator {
|
||||
min-height: 150px;
|
||||
}
|
||||
|
||||
.issue-comments-section .remirror-editor-wrapper .remirror-editor {
|
||||
min-height: 50px;
|
||||
}
|
||||
|
||||
.remirror-editor-wrapper {
|
||||
padding-top: 8px;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user