PluginProbe
WebberZone Top 10 — Popular Posts / 4.5.1
WebberZone Top 10 — Popular Posts v4.5.1
4.5.1 4.5.0 4.4.3 4.4.2 4.4.1 4.4.0 4.3.4 4.3.3 4.3.2 4.3.1 4.3.0 trunk 1.0 1.0.1 1.1 1.2 1.3 1.4 1.4.1 1.5 1.5.1 1.5.2 1.5.3 1.6 1.6.1 All 117 releases
top-10 / includes / frontend / blocks / src / post-count / style.scss

style.scss in WebberZone Top 10 — Popular Posts 4.5.1, at includes/frontend/blocks/src/post-count/style.scss

43 lines 745 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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