We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5ddc4b commit 23bc694Copy full SHA for 23bc694
2 files changed
src/popup/App.svelte
@@ -8,6 +8,7 @@
8
import iconOpen from "../shared/img/icon-open.svg";
9
import iconUpdate from "../shared/img/icon-update.svg";
10
import iconClear from "../shared/img/icon-clear.svg";
11
+ import iconRefresh from "../shared/img/icon-refresh.svg";
12
13
let error = undefined;
14
let active = true;
@@ -171,6 +172,10 @@
171
172
margin: 0 auto 0 1rem;
173
}
174
175
+ .header :global(button:nth-of-type(3)) {
176
+ margin-right: 1rem;
177
+ }
178
+
179
.header :global(button:nth-of-type(1) svg) {
180
width: 75%;
181
@@ -253,6 +258,12 @@
253
258
title={"Show updates"}
254
259
{disabled}
255
260
/>
261
+ <IconButton
262
+ icon={iconRefresh}
263
+ on:click={() => window.location.reload()}
264
+ title={"Refresh view"}
265
+ {disabled}
266
+ />
256
267
<IconButton
257
268
on:click={toggleExtension}
269
icon={iconPower}
src/shared/img/icon-refresh.svg
0 commit comments