Skip to content

Commit 4a1ca8c

Browse files
committed
Merge remote-tracking branch 'studioromeo/fix-ios-15-button' into main
2 parents cf0376c + 9f33cd7 commit 4a1ca8c

1 file changed

Lines changed: 7 additions & 2 deletions

File tree

normalize.css

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -184,10 +184,15 @@ input { /* 1 */
184184

185185
/**
186186
* Remove the inheritance of text transform in Edge, IE11, and IE10.
187+
* 1. Remove the inheritance of text transform in Firefox.
188+
* 2. Remove blue color in iOS 15+ Safari
187189
*/
188190

189-
button {
190-
text-transform: none;
191+
192+
button,
193+
select {
194+
text-transform: none; /* 1 */
195+
color: inherit; /* 2 */
191196
}
192197

193198
/**

0 commit comments

Comments
 (0)