diff --git a/README.md b/README.md index 496c437..7c9d9c0 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -

logo2

+

logo2

###

Desktop Frontend

diff --git a/logo.png b/logo.png new file mode 100644 index 0000000..532e5e0 Binary files /dev/null and b/logo.png differ diff --git a/src/assets/imgs/powered-logo.png b/src/assets/imgs/powered-logo.png index d07f3d0..6d24931 100644 Binary files a/src/assets/imgs/powered-logo.png and b/src/assets/imgs/powered-logo.png differ diff --git a/src/components/open-source-badge/index.vue b/src/components/open-source-badge/index.vue index d87629a..d352d9d 100644 --- a/src/components/open-source-badge/index.vue +++ b/src/components/open-source-badge/index.vue @@ -4,8 +4,8 @@ */ @@ -14,6 +14,11 @@ export default { name: 'OpenSourceBadge', data() { return {} + }, + methods: { + handleClick() { + window.open('https://www.shopex.cn/', '_blank') + } } } @@ -25,9 +30,15 @@ export default { align-items: center; padding: 16px 0; margin-top: 20px; + cursor: pointer; + transition: opacity 0.3s ease; + + &:hover { + opacity: 0.8; + } img { - max-width: 120px; + max-width: 160px; height: auto; object-fit: contain; } @@ -37,12 +48,20 @@ export default { padding: 12px 0; margin-top: 16px; + span { + font-size: 11px; + } + img { max-width: 100px; } } @media (max-width: 480px) { + span { + font-size: 10px; + } + img { max-width: 80px; }