9 lines
164 B
CSS
9 lines
164 B
CSS
/*
|
|
* iOS doens't believe in click events for some elements.
|
|
* This is here to convince it to allow buttons to be clickable
|
|
*/
|
|
button {
|
|
cursor: pointer;
|
|
}
|
|
|