diff --git a/locales/en-US.yml b/locales/en-US.yml index 70a5629769..a792ea7335 100644 --- a/locales/en-US.yml +++ b/locales/en-US.yml @@ -370,13 +370,13 @@ antennaExcludeKeywords: "Keywords to exclude" antennaKeywordsDescription: "Separate with spaces for an AND condition or with line breaks for an OR condition." notifyAntenna: "Notify about new posts" withFileAntenna: "Only posts with files" -enableServiceworker: "Enable Push-Notifications for your Browser" +enableServiceworker: "Enable Push Notifications for your Browser" antennaUsersDescription: "List one username per line" antennaInstancesDescription: "List one instance host per line" caseSensitive: "Case sensitive" withReplies: "Include replies" connectedTo: "Following account(s) are connected" -notesAndReplies: "Posts and replies" +notesAndReplies: "Replies" withFiles: "Including files" silence: "Silence" silenceConfirm: "Are you sure that you want to silence this user?" diff --git a/packages/client/src/components/MkTab.vue b/packages/client/src/components/MkTab.vue index a8e8cbc0f9..eb8e9e4ba2 100644 --- a/packages/client/src/components/MkTab.vue +++ b/packages/client/src/components/MkTab.vue @@ -31,11 +31,11 @@ export default defineComponent({ display: flex; font-size: 90%; border-radius: var(--radius); - padding: 10px 8px; + margin-top: -10px; > button { flex: 1; - padding: 10px 8px; + padding: 6px; margin: 0 8px; border-radius: var(--radius); @@ -62,13 +62,5 @@ export default defineComponent({ margin-right: 6px; } } - - &.max-width_500px { - font-size: 80%; - - > button { - padding: 11px 8px; - } - } } diff --git a/packages/client/src/pages/admin/emojis.vue b/packages/client/src/pages/admin/emojis.vue index 766fc8b491..b339cba982 100644 --- a/packages/client/src/pages/admin/emojis.vue +++ b/packages/client/src/pages/admin/emojis.vue @@ -73,7 +73,6 @@ import { computed, defineAsyncComponent, defineComponent, ref, toRef } from 'vue import MkButton from '@/components/MkButton.vue'; import MkInput from '@/components/form/input.vue'; import MkPagination from '@/components/MkPagination.vue'; -import MkTab from '@/components/MkTab.vue'; import MkSwitch from '@/components/form/switch.vue'; import FormSplit from '@/components/form/split.vue'; import { selectFile, selectFiles } from '@/scripts/select-file';