-
Notifications
You must be signed in to change notification settings - Fork 174
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
devop: adjust actions ui bg, spacing in tokens and add header
- Loading branch information
Showing
5 changed files
with
69 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
54 changes: 54 additions & 0 deletions
54
packages/extension/src/ui/action/views/network-assets/components/network-assets-header.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,54 @@ | ||
<template> | ||
<a class="network-assets__header"> | ||
<div class="network-assets__header__token"> | ||
<p>Token</p> | ||
</div> | ||
|
||
<div> | ||
<p>Last 24h</p> | ||
</div> | ||
|
||
<div class="network-assets__header__price"> | ||
<p>Value</p> | ||
</div> | ||
</a> | ||
</template> | ||
|
||
<script setup lang="ts"></script> | ||
|
||
<style lang="less"> | ||
@import '@action/styles/theme.less'; | ||
.network-assets { | ||
&__header { | ||
padding: 10px 12px 2px 12px; | ||
position: relative; | ||
display: flex; | ||
justify-content: space-between; | ||
align-items: end; | ||
flex-direction: row; | ||
p { | ||
color: @black06; | ||
font-size: 10px; | ||
font-weight: 500; | ||
line-height: 11px; | ||
letter-spacing: 1.5px; | ||
text-transform: uppercase; | ||
margin: 0; | ||
} | ||
&__token { | ||
width: 200px; | ||
p { | ||
padding-left: 48px; | ||
} | ||
} | ||
&__price { | ||
width: 162px; | ||
p { | ||
text-align: end; | ||
} | ||
} | ||
} | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters