Skip to content

Commit

Permalink
Change -webkit-transition to transition-property (#540)
Browse files Browse the repository at this point in the history
As per https://developer.mozilla.org/en-US/docs/Web/CSS/@media/-webkit-transition, webkit-transition feature is no longer recommended. Though some browsers might still support it, it may have already been removed from the relevant web standards, may be in the process of being dropped, or may only be kept for compatibility purposes.
  • Loading branch information
vanshaj18 committed Jan 30, 2022
1 parent d4886b0 commit 16a1a77
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions _sass/_base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ blockquote {
a {
i::before {
color: var(--global-text-color);
-webkit-transition: all 0.2s ease-in-out;
transition-property: all 0.2s ease-in-out;
}
&:hover {
i::before {
Expand Down Expand Up @@ -220,7 +220,7 @@ blockquote {
a {
i::before {
color: var(--global-text-color);
-webkit-transition: all 0.2s ease-in-out;
transition-property: all 0.2s ease-in-out;
}
&:hover {
i::before {
Expand Down Expand Up @@ -467,7 +467,7 @@ footer.sticky-bottom {
max-height: 0px;
overflow: hidden;
text-align: justify;
-webkit-transition: 0.15s ease;
transition-property: 0.15s ease;
-moz-transition: 0.15s ease;
-ms-transition: 0.15s ease;
-o-transition: 0.15s ease;
Expand All @@ -485,7 +485,7 @@ footer.sticky-bottom {
}
.hidden.open {
max-height: 100em;
-webkit-transition: 0.15s ease;
transition-property: 0.15s ease;
-moz-transition: 0.15s ease;
-ms-transition: 0.15s ease;
-o-transition: 0.15s ease;
Expand Down

0 comments on commit 16a1a77

Please sign in to comment.