refactor: tweak UIs

This commit is contained in:
Tristan Yang
2023-05-15 13:18:42 +08:00
parent a71a00d493
commit c6edf3e8b1
3 changed files with 8 additions and 6 deletions
+1 -1
View File
@@ -105,7 +105,7 @@ const SessionList: FC<Props> = ({ tempSession }) => {
return (
<>
{pinSessions.length ? <ul className="flex flex-col gap-0.5 p-2 bg-primary-500/10">
{pinSessions.length ? <ul className="flex flex-col gap-0.5 py-1 px-2 bg-primary-500/10">
{pinSessions.map((p) => {
const { type, id, mid = 0 } = p;
const key = `${type}_${id}`;