1
0
mirror of https://github.com/1Panel-dev/1Panel.git synced 2025-01-21 09:19:16 +08:00

45 lines
937 B
Vue
Raw Normal View History

2022-08-16 23:30:23 +08:00
<template>
<div class="not-container">
2023-02-03 11:17:31 +08:00
<img src="@/assets/images/404.svg" class="not-img" alt="404" />
2022-08-16 23:30:23 +08:00
<div class="not-detail">
<h2>404</h2>
2023-02-03 11:17:31 +08:00
<h4>{{ $t('commons.msg.notFound') }}</h4>
2022-08-16 23:30:23 +08:00
</div>
</div>
</template>
<script setup lang="ts" name="404"></script>
<style scoped lang="scss">
2023-02-03 11:17:31 +08:00
.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;
}
}
}
2022-08-16 23:30:23 +08:00
</style>