style.css in Gutenberg 23.2.0, at build/styles/block-library/icon/style.css
| 1 |
/** |
| 2 |
* Editor and frontend styles for the Icon Block. |
| 3 |
*/ |
| 4 |
/* Icon Block styles. */ |
| 5 |
.wp-block-icon { |
| 6 |
line-height: 0; |
| 7 |
} |
| 8 |
.wp-block-icon.aligncenter { |
| 9 |
display: flex; |
| 10 |
justify-content: center; |
| 11 |
} |
| 12 |
.wp-block-icon svg { |
| 13 |
box-sizing: border-box; |
| 14 |
fill: currentColor; |
| 15 |
} |
| 16 |
|
| 17 |
:where(.wp-block-icon) svg { |
| 18 |
width: 100%; |
| 19 |
height: 100%; |
| 20 |
} |