We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d45372d commit e3a3c51Copy full SHA for e3a3c51
components/feedback/stickybutton.js
@@ -20,11 +20,16 @@ const StickyButton = `
20
-webkit-transform: rotate(-90deg);
21
transform: rotate(-90deg);
22
}
23
- .sticky-button:hover .sticky-button:focus {
+ .sticky-button:active {
24
+ box-shadow: -5px 5px 0px #000000;
25
+ webkit-transform-origin: 105% 100%;
26
+ transform-origin: 105% 100%;
27
+ -webkit-transform: rotate(-90deg);
28
+ transform: rotate(-90deg);
29
+ }
30
+ .sticky-button:hover {
31
background-color: var(--primary-color-dark);
- transition: all .2s ease-in-out;
- box-shadow: 2px 2px 10px rgba(0,0,0, 0.3);
- }
32
33
.icono-mail {
34
box-sizing: border-box;
35
display: inline-block;
0 commit comments