Skip to content
This repository was archived by the owner on May 5, 2023. It is now read-only.

Commit d96ff30

Browse files
authored
Merge pull request #105 from DesignSystemsOSS/v2.0
Merging v2.0 to master branch for v2.0/stable updates
2 parents 38039da + c6beb85 commit d96ff30

File tree

4 files changed

+7
-13
lines changed

4 files changed

+7
-13
lines changed

src/lib/eccentric.scss

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -204,18 +204,18 @@ h6, .et-h6 {
204204

205205
// Combined Property For all tags
206206
// This Contains various Tags like Paragraph, italics, bold, quote, Underlined.
207-
.et-paragraph, .et-quote, .et-regular, p, b, i, u, q {
208-
font-family: var(--et-sans-serif);
209-
margin: 0;
210-
color: var(--et-black);
207+
.et-paragraph, p, b, i, u, q {
208+
font-family: var(--et-sans-serif);
209+
margin: 0;
210+
color: var(--et-black);
211211
}
212212

213213
b {
214214
font-weight: bold;
215215
}
216216

217217
// To remove extra (unwanted) margin.
218-
.et-paragraph, .et-regular, p {
218+
.et-paragraph, p {
219219
margin: 0;
220220
}
221221

src/tests/__buttons.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717

1818

1919
<button class="et-button-secondary">Button</button>
20-
<button class="et-button-alert-secondary">Button</button>
20+
<button class="et-button-invalid-secondary">Button</button>
2121
<button class="et-button-warning-secondary">Button</button>
2222
<button class="et-button-valid-secondary">Button</button>
2323
</body>

src/tests/__tags.html

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,9 @@
88
</head>
99
<body>
1010
<p class="et-paragragh">Paragraph Text</p>
11-
<p class="et-regular"> Regular Text</p>
1211
<b>Bold Text</b>
1312
<i>Italic Text</i>
1413
<u>Underlined Text</u>
15-
<q class="et-quote">Quote</q>
14+
<q>Quote</q>
1615
</body>
1716
</html>

src/tests/auto/__TAG_TESTS.js

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,8 @@
11

22
__TAGS_TESTS = [
3-
43
{
54
"classname": "et-paragraph"
6-
},
7-
{
8-
"classname": "et-quote"
95
}
10-
116
]
127

138
let TAGS_TEST_DATA = document.createElement("div");

0 commit comments

Comments
 (0)