fix: fixed broken response pane alignment

This commit is contained in:
liyasthomas
2022-03-01 15:14:47 +05:30
parent 9bd55b6db5
commit 78ec44f34b
2 changed files with 3 additions and 3 deletions

View File

@@ -1,10 +1,10 @@
<template> <template>
<div <div
class="sticky top-0 z-10 flex items-center p-4 overflow-auto bg-primary hide-scrollbar whitespace-nowrap" class="sticky top-0 z-10 flex items-start overflow-auto bg-primary hide-scrollbar whitespace-nowrap"
> >
<div <div
v-if="responseString === 'loading'" v-if="responseString === 'loading'"
class="flex flex-col items-center justify-center flex-1 text-secondaryLight" class="flex flex-col items-center justify-center flex-1 p-4 text-secondaryLight"
> >
<SmartSpinner class="my-4" /> <SmartSpinner class="my-4" />
<span class="text-secondaryLight">{{ t("state.loading") }}</span> <span class="text-secondaryLight">{{ t("state.loading") }}</span>

View File

@@ -1,6 +1,6 @@
<template> <template>
<div <div
class="sticky top-0 z-10 flex items-center p-4 overflow-auto bg-primary hide-scrollbar whitespace-nowrap" class="sticky top-0 z-10 flex items-start p-4 overflow-auto bg-primary hide-scrollbar whitespace-nowrap"
> >
<div <div
v-if="response == null" v-if="response == null"