feat: convo tagging frontend

This commit is contained in:
Timothy J. Baek 2024-01-17 21:01:30 -08:00
parent 541cf36601
commit 4e828b0669
3 changed files with 87 additions and 43 deletions

View file

@ -8,7 +8,9 @@
let mounted = false;
const sizeToWidth = (size) => {
if (size === 'sm') {
if (size === 'xs') {
return 'w-[16rem]';
} else if (size === 'sm') {
return 'w-[30rem]';
} else {
return 'w-[40rem]';