chore: update resource description in extension

This commit is contained in:
Steven
2023-11-19 23:34:00 +08:00
parent e9905cbc39
commit b03c94f75d
4 changed files with 11 additions and 11 deletions

View File

@@ -150,7 +150,7 @@ const CreateShortcutsButton = () => {
<Input
className="grow"
type="text"
placeholder="https://github.com/boojack/slash"
placeholder="e.g., https://github.com/boojack/slash"
value={state.link}
onChange={handleLinkInputChange}
/>

View File

@@ -6,7 +6,7 @@ interface Props {
}
const Logo = ({ className }: Props) => {
return <img className={classNames(className)} src={LogoBase64} alt="" />;
return <img className={classNames("rounded-full", className)} src={LogoBase64} alt="" />;
};
export default Logo;