小功能优化 (#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; padding: 0.36rem 0 0.36rem;
border: 1px solid transparent; border: 1px solid transparent;
&.spliter { &.spliter {
border-bottom: 0.12rem solid $spliter-color; border-bottom: 0.12rem solid var(--primary-background-color);
} }
&.mouse-hover { &.mouse-hover {

View File

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

View File

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

View File

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