diff --git a/assets/scss/common/button.scss b/assets/scss/common/button.scss index e004625..0466fdc 100644 --- a/assets/scss/common/button.scss +++ b/assets/scss/common/button.scss @@ -140,6 +140,7 @@ &.ant-btn-popup-default { background:map-deep-get($config, #{$theme}, "ant-btn-popup-bg"); color:map-deep-get($config, #{$theme}, "ant-btn-popup-color"); + border: 1px solid map-deep-get($config, #{$theme}, "ant-btn-popup-border"); } &.ant-btn-danger { diff --git a/assets/scss/var.scss b/assets/scss/var.scss index b42b36d..3d2a922 100644 --- a/assets/scss/var.scss +++ b/assets/scss/var.scss @@ -181,6 +181,7 @@ $config: ( ant-checkbox-border: #424242, ant-btn-popup-bg: #212224, ant-btn-popup-color: #FFFFFFD9, + ant-btn-popup-border: #424242, ), light: (w-g5: $--color-gray_555, g5-w: $--color-white, @@ -325,5 +326,6 @@ $config: ( ant-checkbox-border: #D9D9D9, ant-btn-popup-bg: #FFFFFF, ant-btn-popup-color: #000000E0, + ant-btn-popup-border: #D9D9D9, ), ); \ No newline at end of file diff --git a/components/common/CheckBox.vue b/components/common/CheckBox.vue index ebc2a12..31d40ca 100644 --- a/components/common/CheckBox.vue +++ b/components/common/CheckBox.vue @@ -1,14 +1,12 @@