Skip to content

Commit

Permalink
refactor: cleary developing materials
Browse files Browse the repository at this point in the history
  • Loading branch information
geoje committed Nov 16, 2024
1 parent 646b63a commit b578a8e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,14 @@ function MaterialButton({
<IconButton
w="40px"
aria-label={label}
opacity={label.endsWith(")") ? 0.2 : undefined}
colorScheme={selected ? "blue" : undefined}
icon={<Image src={icon} maxW="none" />}
icon={
<Image
src={icon}
maxW="none"
opacity={label.endsWith(")") ? 0.1 : undefined}
/>
}
onClick={onClick}
/>
</Tooltip>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -247,7 +247,7 @@ export default function Potential({
<Tag as={Flex} px={2} py={1} gap={2}>
<Image src={MATERIAL_INFOS[materialType].icon} />
<Text size="xs">
μ•„μ΄ν…œμ˜ <b>잠재λŠ₯λ ₯</b>을 μž¬μ„€μ •ν•©λ‹ˆλ‹€.
μ•„μ΄ν…œμ˜ <b>{addi ? "에디셔널 " : ""}잠재λŠ₯λ ₯</b>을 μž¬μ„€μ •ν•©λ‹ˆλ‹€.
</Text>
</Tag>
<ItemSlot image={item?.item_icon} />
Expand Down

0 comments on commit b578a8e

Please sign in to comment.