Change css class for sidebar and symbols

This commit is contained in:
Guillaume Tauzin 2022-09-09 08:40:01 +02:00
parent 6a3ddea763
commit 23c7a05a00
8 changed files with 97 additions and 9 deletions

View file

@ -23,7 +23,7 @@ export function Sidebar(props: ISidebarProps): JSX.Element {
draggable={true}
onDragStart={(event) => HandleDragStart(event)}
>
{TruncateString(componentOption.Type, 5)}
{TruncateString(componentOption.Type, 25)}
</button>
);
@ -35,7 +35,7 @@ export function Sidebar(props: ISidebarProps): JSX.Element {
<div className='bg-slate-100 sidebar-title'>
Components
</div>
<div className='grid grid-cols-1 md:grid-cols-3 gap-2
<div className='grid grid-cols-1 md:grid-cols-1 gap-2
m-2 md:text-xs font-bold'>
{listElements}
</div>