Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

UI #152

Open
wants to merge 17 commits into
base: main
Choose a base branch
from
Open

UI #152

Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
pull main
SergioAriel committed Jul 24, 2023

Unverified

This user has not yet uploaded their public signing key.
commit dfc80afb197c5f44ae2fd2b77f1dad948342afe2
2 changes: 1 addition & 1 deletion ui/components/ClassicEditor/NewItem/index.tsx
Original file line number Diff line number Diff line change
@@ -23,7 +23,7 @@ export const NewItem: FC<any> = ({ prop, setIsModalOpen, isModalOpen }) => {
return (

<div
className="flex flex-col justify-between p-5 m-5 h-48 rounded-md ring-1 items-center hover:ring-2 ring-border"
className="flex flex-col justify-between p-5 m-5 w-32 min-w-[8rem] h-48 rounded-md ring-1 items-center hover:ring-2 ring-border"
>
<input
placeholder={`Add ${prop.charAt(0).toUpperCase() + prop.slice(1)}'s name`}
2 changes: 1 addition & 1 deletion ui/components/ClassicEditor/section/index.tsx
Original file line number Diff line number Diff line change
@@ -26,7 +26,7 @@ export const Section: FC<any> = ({ instruction, content, initExpanded = false, d
>
{`${instruction.charAt(0).toUpperCase() + instruction.slice(1)}`}
</div>
<div className={` flex w-full mini-scrollbar transition-all duration-500 overflow-x-auto overflow-y-hidden ${expanded ? "h-min" : " overflow-x-hidden h-0"} ${hidden ? "hidden" : "block"}`}>
<div className={`flex w-full mini-scrollbar transition-all duration-500 items-center overflow-y-hidden ${expanded ? "overflow-x-auto h-64" : " overflow-x-hidden h-0"}`}>
{
instruction !== "errors" && !edit ?
<>
You are viewing a condensed version of this merge commit. You can view the full changes here.