Fix layout toggle on safari

This commit is contained in:
David Baker
2023-09-20 10:22:48 +01:00
parent 0128fece80
commit d4b67015b8

View File

@@ -24,8 +24,12 @@ limitations under the License.
.toggle input {
appearance: none;
/* Safari puts a margin on these, which is not removed via appearance: none */
/*
* Safari puts a margin on these, which is not removed via appearance: none
* mobile safari also has them take up space in the DOM, so set width 0
*/
margin: 0;
width: 0;
outline: none !important;
}