Skip to content

Commit

Permalink
style: missing width for .ej-error
Browse files Browse the repository at this point in the history
  • Loading branch information
D-D-H committed Mar 15, 2024
1 parent 6ab28fb commit 61ec0e4
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions frontend/src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,14 @@
SPDX-License-Identifier: EPL-2.0
-->
<script setup lang="ts">
import { elementLocale, t } from '@/i18n/i18n';
import {elementLocale, t} from '@/i18n/i18n';
import Header from '@/components/layouts/Header.vue';
import Side from '@/components/layouts/Side.vue';
import Main from '@/components/layouts/Main.vue';
import LoginForm from '@/components/forms/LoginForm.vue';
import axios from 'axios';
import { useEnv } from '@/stores/env';
import { ElLoading } from 'element-plus';
import {useEnv} from '@/stores/env';
import {ElLoading} from 'element-plus';

const env = useEnv();
const error = ref(false);
Expand Down Expand Up @@ -104,6 +104,7 @@ onMounted(() => {
}

.ej-error {
width: 100%;
height: 100%;
}
</style>

0 comments on commit 61ec0e4

Please sign in to comment.