@rubanrubi/hardhat-dashboard 0.2.1 → 0.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +11 -0
- package/dist/ui/app.js +117 -101
- package/dist/ui/app.js.map +4 -4
- package/dist/ui/styles.css +15 -18
- package/package.json +1 -1
package/dist/ui/styles.css
CHANGED
|
@@ -96,6 +96,7 @@ body::before {
|
|
|
96
96
|
margin-top: 20px;
|
|
97
97
|
display: flex;
|
|
98
98
|
flex-wrap: wrap;
|
|
99
|
+
align-items: center;
|
|
99
100
|
gap: 10px;
|
|
100
101
|
}
|
|
101
102
|
|
|
@@ -116,22 +117,18 @@ body::before {
|
|
|
116
117
|
color: var(--text);
|
|
117
118
|
}
|
|
118
119
|
|
|
119
|
-
.wallet-
|
|
120
|
+
.wallet-info-pill {
|
|
120
121
|
display: inline-flex;
|
|
121
|
-
flex-direction:
|
|
122
|
-
|
|
122
|
+
flex-direction: row;
|
|
123
|
+
align-items: center;
|
|
124
|
+
gap: 8px;
|
|
123
125
|
padding: 10px 14px;
|
|
124
|
-
border-radius:
|
|
126
|
+
border-radius: 999px;
|
|
125
127
|
border: 1px solid var(--border);
|
|
126
128
|
background: rgba(255, 255, 255, 0.04);
|
|
129
|
+
color: var(--text-dim);
|
|
127
130
|
font-size: 0.88rem;
|
|
128
|
-
|
|
129
|
-
}
|
|
130
|
-
|
|
131
|
-
.wallet-network-row {
|
|
132
|
-
display: flex;
|
|
133
|
-
align-items: center;
|
|
134
|
-
gap: 7px;
|
|
131
|
+
flex-wrap: wrap;
|
|
135
132
|
}
|
|
136
133
|
|
|
137
134
|
.wallet-dot {
|
|
@@ -142,15 +139,15 @@ body::before {
|
|
|
142
139
|
flex-shrink: 0;
|
|
143
140
|
}
|
|
144
141
|
|
|
145
|
-
.wallet-
|
|
146
|
-
color:
|
|
147
|
-
font-size: 0.
|
|
142
|
+
.wallet-sep {
|
|
143
|
+
color: rgba(154, 182, 255, 0.35);
|
|
144
|
+
font-size: 0.9rem;
|
|
145
|
+
user-select: none;
|
|
148
146
|
}
|
|
149
147
|
|
|
150
|
-
.wallet-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
gap: 8px;
|
|
148
|
+
.wallet-network-name {
|
|
149
|
+
color: var(--text);
|
|
150
|
+
font-size: 0.88rem;
|
|
154
151
|
}
|
|
155
152
|
|
|
156
153
|
.wallet-address {
|