fix play icons being squares on iPhone for about page
This commit is contained in:
parent
7fb6fcea4a
commit
8d5109bbf4
3 changed files with 12 additions and 11 deletions
|
|
@ -88,7 +88,8 @@
|
|||
}
|
||||
|
||||
.accordion-caret {
|
||||
font-size: 21px;
|
||||
font-size: 34px;
|
||||
font-family: "icomoon";
|
||||
margin-left: auto;
|
||||
}
|
||||
|
||||
|
|
|
|||
4
app/static/js/about.js
Normal file → Executable file
4
app/static/js/about.js
Normal file → Executable file
|
|
@ -3,9 +3,9 @@ document.querySelectorAll('.accordion-checkbox').forEach(cbox => {
|
|||
const label = this.previousElementSibling
|
||||
const caret = label.querySelector('.text')
|
||||
if (cbox.checked) {
|
||||
caret.innerHTML = '▼'
|
||||
caret.innerHTML = ''
|
||||
} else {
|
||||
caret.innerHTML = '▶'
|
||||
caret.innerHTML = ''
|
||||
}
|
||||
})
|
||||
})
|
||||
Loading…
Add table
Add a link
Reference in a new issue