Fix overflow in settings page (#805)

This commit is contained in:
Sascha Ißbrücker
2024-08-29 23:04:11 +02:00
committed by GitHub
parent 7d4e65976f
commit 0fe6304328
3 changed files with 11 additions and 3 deletions

View File

@@ -7,8 +7,9 @@
}
}
textarea.custom-css {
textarea.monospace {
font-family: monospace;
box-sizing: border-box;
}
.input-group > input[type=submit] {

View File

@@ -195,3 +195,10 @@ ul.menu li:first-child {
font-size: 16px;
}
}
// Hide tooltips on mobile
@media (pointer:coarse) {
.tooltip::after {
display: none;
}
}