Clarify the standard colors fit info

I didn't want to use the word "basic", since "basic colors" generally means like Blue, Red, Green, Yellow… but it was the only one that fit in the space lol

I tried a lot of stuff with "Fits standard pets" and stuff and couldn't get it to work well
This commit is contained in:
Emi Matchu 2021-07-12 04:46:07 -07:00
parent 9e1d8024c1
commit f1d24d2177

View file

@ -16,6 +16,7 @@ import {
ListItem,
Skeleton,
Textarea,
Tooltip,
UnorderedList,
useColorModeValue,
useTheme,
@ -505,7 +506,7 @@ function ItemModelingSummary({ item }) {
if (fitsAllPets) {
return (
<Box fontSize="xs" fontStyle="italic" opacity="0.8">
For all pets
Fits all pets
</Box>
);
}
@ -548,7 +549,19 @@ function ItemModelingSummary({ item }) {
return (
<Box fontSize="xs" fontStyle="italic" opacity="0.8">
For all species
Fits all{" "}
<Tooltip
label={
<Box fontSize="xs" textAlign="center">
Not special colors like Baby, Maraquan, or Mutant.
</Box>
}
>
<Box display="inline-block" borderBottom="1px dotted" tabIndex="0">
basic
</Box>
</Tooltip>{" "}
pets
</Box>
);
}