Skip to content

Commit

Permalink
fix reference color
Browse files Browse the repository at this point in the history
  • Loading branch information
omohokcoj committed Apr 29, 2023
1 parent dec6924 commit 2b84297
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions ui/src/data_cells/components/reference.vue
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,7 @@ export default {
<style lang="scss" scoped>
@import 'utils/styles/variables';
@import 'view3/src/styles/color/colors';
.ivu-btn {
user-select: initial
Expand All @@ -168,11 +169,11 @@ export default {
right: -15px;
position: absolute;
background: #fff;
border-top: 1px $primary-color solid;
border-bottom: 1px $primary-color solid;
border-top: 1px tint($primary-color, 20%) solid;
border-bottom: 1px tint($primary-color, 20%) solid;
border-top-right-radius: 32px;
border-bottom-right-radius: 32px;
border-right: 1px $primary-color solid
border-right: 1px tint($primary-color, 20%) solid
}
.ivu-btn:hover {
Expand Down

0 comments on commit 2b84297

Please sign in to comment.