|
|
@ -102,13 +102,16 @@ export default { |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
</script> |
|
|
|
</script> |
|
|
|
<style scoped> |
|
|
|
<style scoped lang="scss"> |
|
|
|
|
|
|
|
$space: 20px; |
|
|
|
|
|
|
|
|
|
|
|
.query-form { |
|
|
|
.query-form { |
|
|
|
margin-top: var(--space); |
|
|
|
margin-top: $space; |
|
|
|
margin-bottom: calc(var(--space) * 2); |
|
|
|
margin-bottom: #{$space * 2}; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.balance>div { |
|
|
|
.balance { |
|
|
|
|
|
|
|
&>div { |
|
|
|
background-color: rgba(22, 132, 252, 0.2); |
|
|
|
background-color: rgba(22, 132, 252, 0.2); |
|
|
|
height: 80px; |
|
|
|
height: 80px; |
|
|
|
color: rgba(16, 16, 16, 1); |
|
|
|
color: rgba(16, 16, 16, 1); |
|
|
@ -121,13 +124,13 @@ export default { |
|
|
|
justify-content: center; |
|
|
|
justify-content: center; |
|
|
|
align-items: center; |
|
|
|
align-items: center; |
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
&>div:first-child { |
|
|
|
|
|
|
|
|
|
|
|
.balance>div>div:first-child { |
|
|
|
|
|
|
|
margin-bottom: 5px; |
|
|
|
margin-bottom: 5px; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
.balance>div:not(:first-child) { |
|
|
|
&>div:not(:first-child) { |
|
|
|
margin-left: 20px; |
|
|
|
margin-left: 20px; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
</style> |
|
|
|
</style> |