1
0
mirror of https://github.com/1Panel-dev/1Panel.git synced 2025-01-21 01:09:17 +08:00
2023-02-06 17:18:14 +08:00

45 lines
937 B
Vue

<template>
<div class="not-container">
<img src="@/assets/images/404.svg" class="not-img" alt="404" />
<div class="not-detail">
<h2>404</h2>
<h4>{{ $t('commons.msg.notFound') }}</h4>
</div>
</div>
</template>
<script setup lang="ts" name="404"></script>
<style scoped lang="scss">
.not-container {
display: flex;
align-items: center;
justify-content: center;
width: 100%;
height: 100%;
.not-img {
margin-top: 300px;
}
.not-detail {
margin-top: 300px;
display: flex;
flex-direction: column;
h2,
h4 {
padding: 0;
margin: 0;
}
h2 {
font-size: 60px;
color: #434e59;
}
h4 {
margin: 30px 0 20px;
font-size: 19px;
font-weight: normal;
color: #848587;
}
}
}
</style>