系统通知

This commit is contained in:
A1300399510
2023-07-14 17:21:53 +08:00
parent fbfae2d4fc
commit 89d8462f7b
21 changed files with 492 additions and 104 deletions

View File

@@ -6,7 +6,7 @@ import { useRouter } from 'vue-router'
const router = useRouter()
// router.push(`/edit-choosing`)
</script>
<style>
<style lang="less">
* {
margin: 0;
padding: 0;
@@ -25,6 +25,12 @@ img {
object-fit: contain;
}
.ellipsis {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.shadow {
-moz-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.117647058823529);
-webkit-box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.117647058823529);
@@ -79,4 +85,23 @@ input::-webkit-outer-spin-button {
input[type="number"] {
-moz-appearance: textfield;
}
.scrollbar {
/*滚动条样式*/
&::-webkit-scrollbar {
width: 8px;
}
&::-webkit-scrollbar-thumb {
border-radius: 10px;
box-shadow: inset 0 0 5px rgba(0, 0, 0, 0);
background: rgba(242, 242, 242, 1);
}
&::-webkit-scrollbar-track {
box-shadow: inset 0 0 5px rgba(0, 0, 0, 0);
border-radius: 0;
background: transparent;
}
}
</style>