From 16a1a779742acbe9537aa24975c4c9a0ba42a2ea Mon Sep 17 00:00:00 2001 From: Vanshaj Kerni Date: Mon, 31 Jan 2022 05:11:16 +0530 Subject: [PATCH] Change -webkit-transition to transition-property (#540) 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. --- _sass/_base.scss | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/_sass/_base.scss b/_sass/_base.scss index 594b1a5..7c46b58 100644 --- a/_sass/_base.scss +++ b/_sass/_base.scss @@ -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 { @@ -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 { @@ -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; @@ -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;