Skip to content

Commit fc1ca90

Browse files
committed
Add: hacks
1 parent f48c780 commit fc1ca90

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

css_template.css

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
* Decscription and notes...
77
*
88
* Sections
9-
* - Varibales
9+
* - Variables
1010
* - Typography
1111
* - Links
1212
* - Buttons
@@ -246,3 +246,15 @@ ul {
246246
}
247247

248248
/* -- Hacks --------------------------------------------------------------- */
249+
250+
/* fixes a firefox bug where select menu options appear slightly indented */
251+
@-moz-document url-prefix() {
252+
select {
253+
text-indent: -2px;
254+
}
255+
}
256+
257+
/* In event delegation, prevents child elements from being event.target */
258+
button > * {
259+
pointer-events: none;
260+
}

0 commit comments

Comments
 (0)