小功能优化 (#329)

* feat(换肤设置优化): 边距的颜色优化成背景色一致

* feat: 问卷设置优化
This commit is contained in:
Jiangchunfu 2024-07-09 14:17:44 +08:00 committed by GitHub
parent 2f0736fd95
commit f45cf7982f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 12 additions and 3 deletions

View File

@ -163,7 +163,7 @@ const onMove = () => {}
padding: 0.36rem 0 0.36rem;
border: 1px solid transparent;
&.spliter {
border-bottom: 0.12rem solid $spliter-color;
border-bottom: 0.12rem solid var(--primary-background-color);
}
&.mouse-hover {

View File

@ -94,7 +94,7 @@
}
&.spliter {
border-bottom: 0.12rem solid $spliter-color;
border-bottom: 0.12rem solid var(--primary-background-color);
}
.sort-tip {

View File

@ -73,7 +73,9 @@ watch(
</script>
<style lang="scss" scoped>
.custom-time-range {
width: 100%;
display: flex;
justify-content: space-between;
.seporator {
margin: 0 10px;

View File

@ -1,5 +1,5 @@
<template>
<div>
<div class="time-hour">
<el-config-provider :locale="locale">
<el-time-picker
is-range
@ -105,4 +105,11 @@ watch(
color: $primary-color;
}
}
.time-hour {
width: 100%;
:deep(.el-date-editor) {
width: 100%;
}
}
</style>