Better TOC and Lightbox #13

Merged
DrMint merged 10 commits from develop into main 2022-03-18 13:01:41 +00:00
1 changed files with 1 additions and 1 deletions
Showing only changes of commit 3364a8f560 - Show all commits

View File

@ -8,7 +8,7 @@ type ChipProps = {
export default function Chip(props: ChipProps): JSX.Element {
return (
<div
className={`grid relative place-content-center place-items-center text-xs pb-[0.14rem] px-1.5 border-[1px] rounded-full opacity-70 transition-[color,_opacity,_border-color] hover:opacity-100 ${props.className}`}
className={`grid place-content-center place-items-center text-xs pb-[0.14rem] whitespace-nowrap px-1.5 border-[1px] rounded-full opacity-70 transition-[color,_opacity,_border-color] hover:opacity-100 ${props.className}`}
>
{props.children}
</div>