diff --git a/src/wp-content/themes/twentytwentyone/assets/css/ie.css b/src/wp-content/themes/twentytwentyone/assets/css/ie.css
index 33946c7100..c6d2b47722 100644
a
|
b
|
ul { |
3831 | 3831 | list-style-type: disc; |
3832 | 3832 | } |
3833 | 3833 | |
| 3834 | ul ul { |
| 3835 | list-style-type: circle; |
| 3836 | } |
| 3837 | |
3834 | 3838 | ol { |
3835 | 3839 | list-style-type: decimal; |
3836 | 3840 | } |
diff --git a/src/wp-content/themes/twentytwentyone/assets/sass/05-blocks/list/_style.scss b/src/wp-content/themes/twentytwentyone/assets/sass/05-blocks/list/_style.scss
index 01e8581cea..f756759a4b 100644
a
|
b
|
ol { |
19 | 19 | |
20 | 20 | ul { |
21 | 21 | list-style-type: disc; |
| 22 | ul { |
| 23 | list-style-type: circle; |
| 24 | } |
22 | 25 | } |
23 | 26 | |
24 | 27 | ol { |
diff --git a/src/wp-content/themes/twentytwentyone/style-rtl.css b/src/wp-content/themes/twentytwentyone/style-rtl.css
index 167391639d..465a74aff5 100644
a
|
b
|
ul { |
2683 | 2683 | list-style-type: disc; |
2684 | 2684 | } |
2685 | 2685 | |
| 2686 | ul ul { |
| 2687 | list-style-type: circle; |
| 2688 | } |
| 2689 | |
2686 | 2690 | ol { |
2687 | 2691 | list-style-type: decimal; |
2688 | 2692 | } |
diff --git a/src/wp-content/themes/twentytwentyone/style.css b/src/wp-content/themes/twentytwentyone/style.css
index 815fbf7226..5d5f05714e 100644
a
|
b
|
ul { |
2693 | 2693 | list-style-type: disc; |
2694 | 2694 | } |
2695 | 2695 | |
| 2696 | ul ul { |
| 2697 | list-style-type: circle; |
| 2698 | } |
| 2699 | |
2696 | 2700 | ol { |
2697 | 2701 | list-style-type: decimal; |
2698 | 2702 | } |