Skip to content

Commit 5bedb62

Browse files
committed
added styling for jump button hover
1 parent 68c64ee commit 5bedb62

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

src/app/styles/components/_actionComponent.scss

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -92,6 +92,14 @@
9292
.jump-button {
9393
color: var(--button-primary-text);
9494
background: var(--button-primary-bg);
95+
display: none;
96+
transition: all 200ms ease;
97+
}
98+
99+
.jump-button:hover {
100+
background: var(--text-primary);
101+
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
102+
cursor: pointer;
95103
}
96104

97105
.current-location {
@@ -109,10 +117,6 @@
109117
display: block;
110118
}
111119

112-
.jump-button {
113-
display: none;
114-
}
115-
116120
.current-snap {
117121
font-weight: 700;
118122
border: none;

src/extension/build/manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
},
1515
"content_scripts": [
1616
{
17-
"matches": ["http://localhost/*"],
17+
"matches": ["http://localhost/*", "<all_urls>"],
1818
"js": ["bundles/content.bundle.js"]
1919
}
2020
],

0 commit comments

Comments
 (0)