Merge branch 'no-emoji-selector-outline' into 'develop'

No outline for emoji selector when invisible

Closes #707

See merge request soapbox-pub/soapbox-fe!650
This commit is contained in:
Alex Gleason 2021-07-29 19:47:05 +00:00
commit 1a9335d494

View file

@ -76,6 +76,7 @@
border-radius: 9999px;
box-shadow: 0 0 6px 0 rgba(0, 0, 0, 0.1);
opacity: 0;
outline: 0;
pointer-events: none;
transition: 0.1s;
z-index: 999;
@ -83,6 +84,7 @@
&--visible,
&--focused {
opacity: 1;
outline: unset;
pointer-events: all;
}