Skip to content

Commit b1a3f87

Browse files
committed
replaces deprecated clip rule with recommended clip-path alternative.
from https://developer.mozilla.org/en-US/docs/Web/CSS/clip: > Warning: Authors are encouraged to use the clip-path property instead.
1 parent eb1fc90 commit b1a3f87

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/ilios-common/app/styles/ilios-common/mixins/visually-hidden.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
@mixin visually-hidden {
22
border: 0;
3-
clip: rect(0 0 0 0);
3+
clip-path: rect(0 0 0 0);
44
height: 1px;
55
margin: -1px;
66
overflow: hidden;

0 commit comments

Comments
 (0)