You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
47 lines
810 B
47 lines
810 B
<template>
|
|
<router-view />
|
|
</template>
|
|
|
|
<script setup>
|
|
</script>
|
|
|
|
<style>
|
|
* {
|
|
margin: 0;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
|
|
}
|
|
|
|
#app {
|
|
width: 100%;
|
|
height: 100vh;
|
|
}
|
|
|
|
/* 修复Element Plus按钮hover状态 - 确保hover时背景色更深 */
|
|
.el-button--primary {
|
|
background-color: #409eff;
|
|
border-color: #409eff;
|
|
}
|
|
|
|
.el-button--primary:hover {
|
|
background-color: #337ecc !important;
|
|
border-color: #337ecc !important;
|
|
}
|
|
|
|
.el-button--primary:active,
|
|
.el-button--primary.is-active {
|
|
background-color: #2b6cb0 !important;
|
|
border-color: #2b6cb0 !important;
|
|
}
|
|
|
|
.el-button--primary:focus {
|
|
background-color: #337ecc !important;
|
|
border-color: #337ecc !important;
|
|
}
|
|
</style>
|
|
|