42 lines
545 B
Vue
42 lines
545 B
Vue
|
<script setup>
|
||
|
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<div class="container">
|
||
|
<h1>上传日志</h1>
|
||
|
|
||
|
</div>
|
||
|
|
||
|
|
||
|
</template>
|
||
|
|
||
|
<style scoped>
|
||
|
.container {
|
||
|
width: 100%;
|
||
|
overflow-y: auto;
|
||
|
display: flex;
|
||
|
flex-direction: column;
|
||
|
align-items: flex-start;
|
||
|
color: #f5f6f7;
|
||
|
padding: 20px 0;
|
||
|
transition: background-color 0.3s ease, color 0.3s ease;
|
||
|
animation: fadeIn 0.3s ease-in-out;
|
||
|
}
|
||
|
.theme-light .container {
|
||
|
color: #333333;
|
||
|
}
|
||
|
|
||
|
h1,p {
|
||
|
margin: 0 25px;
|
||
|
}
|
||
|
|
||
|
@keyframes fadeIn {
|
||
|
0% {
|
||
|
opacity: 0;
|
||
|
}
|
||
|
100% {
|
||
|
opacity: 1;
|
||
|
}
|
||
|
}
|
||
|
</style>
|