Skip to content

Commit 51a3253

Browse files
committed
text-decoration-skip is now text-decoration-skip-ink
1 parent 44b261a commit 51a3253

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.sass-lint.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,7 +175,8 @@ rules:
175175
no-misspelled-properties:
176176
- 1
177177
- extra-properties:
178-
- font-display
178+
- overscroll-behavior
179+
- text-decoration-skip-ink
179180
- touch-callout
180181

181182
# Enforce that selectors are not allowed to have qualifying elements.
@@ -210,7 +211,7 @@ rules:
210211
one-declaration-per-line: 1
211212

212213
# Enforce whether extends should only include placeholder selectors.
213-
placeholder-in-extend: 0
214+
placeholder-in-extend: 1
214215

215216
# Enforce a convention for placeholder names.
216217
placeholder-name-format:

src/assets/sass/amp.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ body {
5656
a {
5757
color: $color-link;
5858
text-decoration: none;
59-
text-decoration-skip: ink;
59+
text-decoration-skip-ink: auto;
6060

6161
&:active {
6262
color: $color-link-hover;

src/assets/sass/modules/_links.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
a {
1212
color: $color-link; /* 1 */
1313
text-decoration: none; /* 2 */
14-
text-decoration-skip: ink; /* 3 */
14+
text-decoration-skip-ink: auto; /* 3 */
1515

1616
&:hover,
1717
&:active {

0 commit comments

Comments
 (0)