diff --git a/src/language/en.ts b/src/language/en.ts index 5258a317..d6a6a82a 100644 --- a/src/language/en.ts +++ b/src/language/en.ts @@ -339,6 +339,14 @@ export default { donate: 'Donate Us', home: 'Back Home', }, + donate: { + donate: 'Donate Us', + no: 'comes with no Moemoepoint rewards', + server: + ', but it can help us cover some server expenses. Are you sure you want to sponsor us?', + confirm: 'Confirm Donate', + back: 'Back Home', + }, // 非页面组件这里统一用大驼峰 ComponentAlert: { confirm: 'OK', diff --git a/src/views/donate/Donate.vue b/src/views/donate/Donate.vue index 6e7cfbb3..b3f1f380 100644 --- a/src/views/donate/Donate.vue +++ b/src/views/donate/Donate.vue @@ -1,20 +1,35 @@ @@ -71,7 +86,7 @@ import KUNGalgameFooter from '@/components/KUNGalgameFooter.vue' margin-top: 40px; display: flex; justify-content: space-between; - a { + span { padding: 7px 10px; &:nth-child(1) { background-color: var(--kungalgame-trans-red-0); @@ -93,4 +108,14 @@ import KUNGalgameFooter from '@/components/KUNGalgameFooter.vue' } } } + +@media (max-width: 700px) { + .root { + min-width: 100%; + } + + .container { + width: 90%; + } +}