Fix/event type button alignment (#765)
* fixed event-type buttons on mobile, added more font-cal classes * remove 1-on-1 on mobile event types Co-authored-by: Bailey Pumfleet <pumfleet@hey.com>
This commit is contained in:
parent
6a4d6c7eba
commit
63930c1817
1 changed files with 2 additions and 2 deletions
|
@ -38,13 +38,13 @@ export const EventTypeDescription = ({ eventType, className }: EventTypeDescript
|
||||||
{eventType.length}m
|
{eventType.length}m
|
||||||
</li>
|
</li>
|
||||||
{eventType.schedulingType ? (
|
{eventType.schedulingType ? (
|
||||||
<li className="flex whitespace-nowrap">
|
<li className="hidden sm:flex whitespace-nowrap">
|
||||||
<UsersIcon className="inline mt-0.5 mr-1.5 h-4 w-4 text-neutral-400" aria-hidden="true" />
|
<UsersIcon className="inline mt-0.5 mr-1.5 h-4 w-4 text-neutral-400" aria-hidden="true" />
|
||||||
{eventType.schedulingType === SchedulingType.ROUND_ROBIN && "Round Robin"}
|
{eventType.schedulingType === SchedulingType.ROUND_ROBIN && "Round Robin"}
|
||||||
{eventType.schedulingType === SchedulingType.COLLECTIVE && "Collective"}
|
{eventType.schedulingType === SchedulingType.COLLECTIVE && "Collective"}
|
||||||
</li>
|
</li>
|
||||||
) : (
|
) : (
|
||||||
<li className="flex whitespace-nowrap">
|
<li className="hidden sm:flex whitespace-nowrap">
|
||||||
<UserIcon className="inline mt-0.5 mr-1.5 h-4 w-4 text-neutral-400" aria-hidden="true" />
|
<UserIcon className="inline mt-0.5 mr-1.5 h-4 w-4 text-neutral-400" aria-hidden="true" />
|
||||||
1-on-1
|
1-on-1
|
||||||
</li>
|
</li>
|
||||||
|
|
Loading…
Reference in a new issue