Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions src/.vuepress/components/HomePage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -624,7 +624,7 @@ function jumpTo(url: string): void {
justify-content: space-evenly;
height: 100%;
font-size: 1.1rem;
color: #494949;
color: #000;
padding: 0 20px;
text-align: left;
img {
Expand All @@ -639,6 +639,7 @@ function jumpTo(url: string): void {
font-size: 0.8em;
display: flex;
justify-content: space-between;
cursor: pointer;
&:hover {
.link {
&::after {
Expand Down Expand Up @@ -691,15 +692,14 @@ function jumpTo(url: string): void {
}
.swiper-slide {
height: 220px;
background: #fff;
background: #ffffffc4;
border-radius: 15px;
}
.swiper-slide-active {
box-shadow:
0px 4px 32px 0px rgba(0, 0, 0, 0.06),
0px 0px 10px 0px rgba(0, 0, 0, 0.04);
}

.more {
color: #2e64fe;
padding: 5px 10px;
Expand Down
259 changes: 0 additions & 259 deletions src/.vuepress/components/MembersPage.vue

This file was deleted.

6 changes: 4 additions & 2 deletions src/.vuepress/components/PageFooter.vue
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ const qrcodeOption = computed(() => [
<a
v-if="item.title === footerLocale.DONATE"
class="qrcode-desc"
href="//assets/img/donate.webp"
href="/assets/img/donation.webp"
target="_blank"
>
<img class="qrcode_img" src="/assets/img/donation.webp" />
Expand Down Expand Up @@ -128,7 +128,7 @@ const qrcodeOption = computed(() => [
<a
v-if="item.title === footerLocale.WECHAT"
class="qrcode-desc"
href="//assets/img/qrcode_wx.webp"
href="/assets/img/qrcode_wx.webp"
target="_blank"
>
<img class="qrcode_img" src="/assets/img/qrcode_wx.webp" />
Expand Down Expand Up @@ -328,7 +328,9 @@ const qrcodeOption = computed(() => [
display: none;
transform: translate(-45px, -90px);
color: #fff;
margin: 0;
}

.icon-box {
position: relative;
width: 60px;
Expand Down
6 changes: 4 additions & 2 deletions src/.vuepress/components/ProjectsPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import {
noGiteeProjects,
noGithubProjects,
noImageProject,
useProjectsData
useProjectsData,
} from "../composables/index.js";
import { onMounted } from "vue";

Expand All @@ -20,7 +20,9 @@ onMounted(() => {
webCn = document.location.host.includes("dromara.org.cn");
const orgAds = document.getElementById("wwadsadsorg");
if (orgAds) {
orgAds.innerHTML = webCn ? "<div class=\"wwads-cn wwads-horizontal\" data-id=\"339\" style=\"max-width:350px\"></div>" : "<div class=\"wwads-cn wwads-horizontal\" data-id=\"127\" style=\"max-width: 500px\"></div>";
orgAds.innerHTML = webCn
? '<div class="wwads-cn wwads-horizontal" data-id="339" style="max-width:350px"></div>'
: '<div class="wwads-cn wwads-horizontal" data-id="127" style="max-width: 500px"></div>';
}
});
</script>
Expand Down
2 changes: 1 addition & 1 deletion src/.vuepress/composables/home/en.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export const enHomeOption: HomeOption = {
url: "https://api-buddy.cn",
},
{
name: "carbon",
name: "carbon-home",
description:
"A simple, semantic and developer-friendly golang package for time.",
url: "https://github.com/dromara/carbon",
Expand Down
2 changes: 1 addition & 1 deletion src/.vuepress/composables/home/zh.ts
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ export const zhHomeOption: HomeOption = {
url: "https://api-buddy.cn",
},
{
name: "carbon",
name: "carbon-home",
description: "一个轻量级、语义化、对开发者友好的 golang 时间处理库",
url: "https://github.com/dromara/carbon",
},
Expand Down
1 change: 0 additions & 1 deletion src/.vuepress/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,6 @@ export default defineUserConfig({
__dirname,
"./components/PageFooter.vue",
),
// "@MembersPage": path.resolve(__dirname, "./components/MembersPage.vue"),
"@ProjectsPage": path.resolve(__dirname, "./components/ProjectsPage.vue"),
"@HonorComp": path.resolve(__dirname, "./components/HonorComp.vue"),
"@SiteSection": path.resolve(__dirname, "./components/SiteSection.vue"),
Expand Down
Loading