| 1 |
.wp-block-tptn-post-count { |
| 2 |
display: flex; |
| 3 |
align-items: center; |
| 4 |
column-gap: 0.2em; |
| 5 |
} |
| 6 |
|
| 7 |
.tptn-post-count-icon svg { |
| 8 |
width: 1em; |
| 9 |
height: 1em; |
| 10 |
} |
| 11 |
|
| 12 |
.tptn-post-count-icon { |
| 13 |
display: flex; |
| 14 |
align-items: center; |
| 15 |
} |
| 16 |
|
| 17 |
.wp-block-tptn-post-count.has-text-align-left { |
| 18 |
text-align: left; |
| 19 |
display: flex; |
| 20 |
justify-content: flex-start; |
| 21 |
align-items: center; |
| 22 |
|
| 23 |
/* Optional for vertical alignment */ |
| 24 |
} |
| 25 |
|
| 26 |
.wp-block-tptn-post-count.has-text-align-center { |
| 27 |
text-align: center; |
| 28 |
display: flex; |
| 29 |
justify-content: center; |
| 30 |
align-items: center; |
| 31 |
|
| 32 |
/* Optional for vertical alignment */ |
| 33 |
} |
| 34 |
|
| 35 |
.wp-block-tptn-post-count.has-text-align-right { |
| 36 |
text-align: right; |
| 37 |
display: flex; |
| 38 |
justify-content: flex-end; |
| 39 |
align-items: center; |
| 40 |
|
| 41 |
/* Optional for vertical alignment */ |
| 42 |
} |
| 43 |
|