chore: update shortcuts display

This commit is contained in:
Steven
2024-01-21 18:49:42 +08:00
parent 5dab623793
commit 2552a7645e
3 changed files with 4 additions and 4 deletions

View File

@ -14,7 +14,7 @@ const ShortcutsContainer = () => {
<span className="mx-1 text-sm">Please make sure you have signed in your instance.</span>
</a>
</div>
<div className={classNames("w-full grid grid-cols-2 gap-2")}>
<div className={classNames("w-full flex flex-row justify-start items-start flex-wrap gap-2")}>
{shortcuts.map((shortcut) => {
return <ShortcutView key={shortcut.id} shortcut={shortcut} />;
})}