summaryrefslogtreecommitdiff
path: root/packages/client/src/components/google.vue
diff options
context:
space:
mode:
authorsyuilo <Syuilotan@yahoo.co.jp>2022-08-31 00:24:33 +0900
committersyuilo <Syuilotan@yahoo.co.jp>2022-08-31 00:24:33 +0900
commit786b150ea75111b5f6102c256d5cfa42cb83d1fb (patch)
treed552d0c371829d7ff027890d1036a80bb08517f7 /packages/client/src/components/google.vue
parentupdate deps (diff)
downloadmisskey-786b150ea75111b5f6102c256d5cfa42cb83d1fb.tar.gz
misskey-786b150ea75111b5f6102c256d5cfa42cb83d1fb.tar.bz2
misskey-786b150ea75111b5f6102c256d5cfa42cb83d1fb.zip
refactor(client): align filename to component name
Diffstat (limited to 'packages/client/src/components/google.vue')
-rw-r--r--packages/client/src/components/google.vue51
1 files changed, 0 insertions, 51 deletions
diff --git a/packages/client/src/components/google.vue b/packages/client/src/components/google.vue
deleted file mode 100644
index bb4b439ee8..0000000000
--- a/packages/client/src/components/google.vue
+++ /dev/null
@@ -1,51 +0,0 @@
-<template>
-<div class="mk-google">
- <input v-model="query" type="search" :placeholder="q">
- <button @click="search"><i class="fas fa-search"></i> {{ $ts.searchByGoogle }}</button>
-</div>
-</template>
-
-<script lang="ts" setup>
-import { ref } from 'vue';
-
-const props = defineProps<{
- q: string;
-}>();
-
-const query = ref(props.q);
-
-const search = () => {
- window.open(`https://www.google.com/search?q=${query.value}`, '_blank');
-};
-</script>
-
-<style lang="scss" scoped>
-.mk-google {
- display: flex;
- margin: 8px 0;
-
- > input {
- flex-shrink: 1;
- padding: 10px;
- width: 100%;
- height: 40px;
- font-size: 16px;
- border: solid 1px var(--divider);
- border-radius: 4px 0 0 4px;
- -webkit-appearance: textfield;
- }
-
- > button {
- flex-shrink: 0;
- margin: 0;
- padding: 0 16px;
- border: solid 1px var(--divider);
- border-left: none;
- border-radius: 0 4px 4px 0;
-
- &:active {
- box-shadow: 0 2px 4px rgba(#000, 0.15) inset;
- }
- }
-}
-</style>