We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 470d5fd + 4d565ff commit c8c6634Copy full SHA for c8c6634
src/shared/components/Terms/TermDetails.scss
@@ -40,6 +40,44 @@
40
br + br {
41
display: none;
42
}
43
+
44
+ ol {
45
+ margin: 0 0 5px;
46
+ counter-reset: item;
47
+ font-size: 15px;
48
+ color: $tc-gray-90;
49
+ line-height: 25px;
50
+ display: table;
51
52
+ li {
53
+ list-style-type: none;
54
+ font-weight: 400;
55
+ counter-increment: item;
56
+ display: table-row;
57
+ white-space: normal;
58
59
+ &::before {
60
+ display: table-cell;
61
+ font-weight: 700;
62
+ text-align: right;
63
+ content: counter(item) ".";
64
+ padding: 0 10px 0 0;
65
+ width: 32px;
66
+ }
67
68
69
70
+ ul {
71
+ margin: 0 0 5px 20px;
72
73
74
75
+ list-style: disc outside none;
76
77
78
79
80
81
82
83
.frame {
0 commit comments