mirror of
https://github.com/hpware/news-analyze.git
synced 2025-07-17 03:29:29 +08:00
Add stuff.
This commit is contained in:
parent
0c904fd5bd
commit
aa8fb3a2d2
@ -137,7 +137,7 @@ onMounted(async () => {
|
||||
</div>
|
||||
<div
|
||||
v-if="loadingTranslations"
|
||||
class="flex flex-col bg-gray-200/50 text-black w-full h-full fixed inset-0 justify-center align-middle text-center z-[20] backdrop-blur-sm"
|
||||
class="flex flex-col bg-gray-200/50 text-black w-full h-full absolute inset-0 justify-center align-middle text-center z-[20] backdrop-blur-sm"
|
||||
>
|
||||
<!--Spinner from https://flowbite.com/docs/components/spinner/-->
|
||||
<div role="status">
|
||||
@ -164,7 +164,10 @@ onMounted(async () => {
|
||||
class="justify-center align-center text-center flex flex-col md:flex-row flex-wrap"
|
||||
>
|
||||
<div class="flex flex-col">
|
||||
<div class="group">
|
||||
<div class="p-4 w-full h-fit pt-0 mt-0">
|
||||
<img v-if="data.images[0]" :src="data.images[0]" class="rounded" />
|
||||
</div>
|
||||
<div class="group -translate-y-12 backdrop-blur-lg bg-gray-300/40">
|
||||
<h2 class="text-3xl text-bold">
|
||||
{{
|
||||
displayTranslatedText
|
||||
@ -186,9 +189,6 @@ onMounted(async () => {
|
||||
}}</span
|
||||
>
|
||||
</div>
|
||||
<div class="p-4 w-full h-fit pt-0 mt-0">
|
||||
<img v-if="data.images[0]" :src="data.images[0]" class="rounded" />
|
||||
</div>
|
||||
<div class="text-center" v-for="item in data.paragraph">
|
||||
{{ displayTranslatedText ? translateItem[item]?.translateText : item }}
|
||||
</div>
|
||||
|
@ -90,7 +90,6 @@ const activeWindows = ref<associAppWindowInterface[]>([]);
|
||||
const hiddenWindows = ref<minAppWindowInterface[]>([]);
|
||||
const openApp = ref();
|
||||
const openAppId = ref();
|
||||
const openAppNameQuery = ref();
|
||||
const currentOpenAppId = ref(0);
|
||||
const progress = ref(0);
|
||||
const titleAppName = ref("Desktop");
|
||||
@ -101,7 +100,6 @@ const changeLangAnimation = ref(false);
|
||||
const applyForTranslation = ref(false);
|
||||
const langPrefDifferent = ref(false);
|
||||
const notLoggedInState = ref(false);
|
||||
const translateProvider = ref("");
|
||||
const newUpdate = ref(false);
|
||||
|
||||
// Key Data
|
||||
|
Loading…
x
Reference in New Issue
Block a user