You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
502 B
22 lines
502 B
.install-prompt-box { |
|
position: fixed; |
|
bottom: 20px; |
|
left: 20px; |
|
background: var(--color-bg); |
|
color: var(--color-text); |
|
border: 1px solid var(--color-border); |
|
padding: 1rem; |
|
border-radius: 8px; |
|
z-index: 1000; |
|
box-shadow: 0 4px 14px var(--color-shadow); |
|
} |
|
|
|
.install-prompt-box a:focus-visible, |
|
.install-prompt-box button:focus-visible { |
|
outline: 2px solid var(--color-focus-ring); |
|
outline-offset: 2px; |
|
} |
|
|
|
.install-prompt-box.hidden { |
|
display: none; |
|
}
|
|
|