Revert "notes (#10067)"

This reverts commit 84f904516c, reversing
changes made to 0c742929a5.
This commit is contained in:
ThatOneCalculator 2023-05-08 12:37:28 -07:00
parent 84f904516c
commit 08ceb5e082
No known key found for this signature in database
GPG key ID: 8703CACD01000000
3 changed files with 5 additions and 7 deletions

View file

@ -1,5 +1,5 @@
<template>
<div class="mk-google" @click.stop>
<div class="mk-google">
<input v-model="query" type="search" :placeholder="q" />
<button @click="search">
<i class="ph-magnifying-glass ph-bold ph-lg"></i>

View file

@ -4,7 +4,6 @@
v-for="media in mediaList.filter((media) => !previewable(media))"
:key="media.id"
:media="media"
@click.stop
/>
<div
v-if="mediaList.filter((media) => previewable(media)).length > 0"
@ -16,6 +15,7 @@
:data-count="
mediaList.filter((media) => previewable(media)).length
"
@click.stop
>
<template
v-for="media in mediaList.filter((media) =>
@ -26,7 +26,6 @@
v-if="media.type.startsWith('video')"
:key="media.id"
:video="media"
@click.stop
/>
<XImage
v-else-if="media.type.startsWith('image')"
@ -35,7 +34,6 @@
:data-id="media.id"
:image="media"
:raw="raw"
@click.stop
/>
</template>
</div>

View file

@ -471,6 +471,9 @@ onUnmounted(() => {
> .article {
padding-block: 28px 6px;
padding-top: 12px;
&:last-child {
padding-bottom: 24px;
}
font-size: 1.1rem;
overflow: clip;
outline: none;
@ -478,9 +481,6 @@ onUnmounted(() => {
:deep(.article) {
cursor: unset;
}
&:first-of-type {
padding-top: 28px;
}
}
> .reply {