* Service worker with toast notifications * Update CSP to allow fetches from now.sh * Fixed clearing timers * rounded icon for pwa (#1301) * rounded icon for pwa * cirle pwa app icon * fix fonts caching * fix app * fix css import * Updated csp tp inlcude worker-src: self * add worker CSP rule * use square icon Co-authored-by: Timur Khazamov <t1mmaas@skbkontur.ru> Co-authored-by: Faustino Kialungila <Faustino.kialungila@gmail.com> Co-authored-by: kbariotis <konmpar@gmail.com>
24 lines
481 B
SCSS
24 lines
481 B
SCSS
@import "../css/_variables";
|
|
|
|
.HintViewer {
|
|
color: $oc-gray-6;
|
|
font-size: 0.8rem;
|
|
left: 50%;
|
|
pointer-events: none;
|
|
position: absolute;
|
|
top: 54px;
|
|
transform: translateX(calc(-50% - 16px)); /* 16px is half of lock icon */
|
|
@media #{$media-query} {
|
|
position: static;
|
|
transform: none;
|
|
margin-top: 0.5rem;
|
|
text-align: center;
|
|
}
|
|
|
|
> span {
|
|
background-color: transparentize($oc-white, 0.12);
|
|
padding: 0.2rem 0.4rem;
|
|
border-radius: 3px;
|
|
}
|
|
}
|