Compare commits

...

1 Commits

Author SHA1 Message Date
leiyuee c3d7170f43 fix: 暂存 6 days ago
  1. BIN
      src/assets/images/AiCategories_templat_active.png
  2. BIN
      src/assets/images/AiCategories_template.png
  3. BIN
      src/assets/images/ic_like.png
  4. BIN
      src/assets/images/ic_like_active.png
  5. 2
      src/components/SectionPill/index.scss
  6. 2
      src/layouts/Layout/Layout.tsx
  7. 2
      src/layouts/globalPromptPanel/utils.ts

BIN
src/assets/images/AiCategories_templat_active.png

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.2 KiB

BIN
src/assets/images/AiCategories_template.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.9 KiB

After

Width:  |  Height:  |  Size: 3.9 KiB

BIN
src/assets/images/ic_like.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 17 KiB

After

Width:  |  Height:  |  Size: 4.4 KiB

BIN
src/assets/images/ic_like_active.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1001 B

After

Width:  |  Height:  |  Size: 2.9 KiB

2
src/components/SectionPill/index.scss

@ -7,7 +7,7 @@
height: 36px; height: 36px;
margin: 0; margin: 0;
padding: 0 36px; padding: 0 36px;
border: 1px solid #333333; border: 1px solid #D1D1D1;
border-radius: 30px; border-radius: 30px;
background: transparent; background: transparent;
color: #333333; color: #333333;

2
src/layouts/Layout/Layout.tsx

@ -569,7 +569,7 @@ export function Layout({ children }: LayoutProps) {
className="layoutShell__brand" className="layoutShell__brand"
aria-label={t("layout.brand.aria")} aria-label={t("layout.brand.aria")}
onClick={() => { onClick={() => {
navigate(ROUTES.INDEX); navigate(ROUTES.EXPLORE);
}} }}
> >
<img className="layoutShell__brandLogo" src={LAYOUT_NAV_ASSETS.logo} alt="" /> <img className="layoutShell__brandLogo" src={LAYOUT_NAV_ASSETS.logo} alt="" />

2
src/layouts/globalPromptPanel/utils.ts

@ -35,7 +35,7 @@ export const OTHER_CATEGORY = [
taskSubType: 999, taskSubType: 999,
name: "Template", name: "Template",
icon: new URL("/src/assets/images/AiCategories_template.png", import.meta.url).href, icon: new URL("/src/assets/images/AiCategories_template.png", import.meta.url).href,
activeIcon: new URL("/src/assets/images/AiCategories_template.png", import.meta.url).href, activeIcon: new URL("/src/assets/images/AiCategories_templat_active.png", import.meta.url).href,
}, },
]; ];

Loading…
Cancel
Save