Skip to content
This repository was archived by the owner on Mar 2, 2022. It is now read-only.

Commit 443ab02

Browse files
committed
-Remove Google Plus Icon
+-Modified transition property. Change time to 0.4s and timing function to cubic-bezier(1, 0, 0, 1) (Exponential)
1 parent 6c5566b commit 443ab02

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

src/components/NavBar.vue

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@
2222
<div id="mobileNavSocialLink">
2323
<a href="https://github.com/biojs/biojs-frontend"><img src="../../static/github.png" alt="GitHub" class="mobileNavSocialLinkImg"></a>
2424
<a href="https://twitter.com/biojslibrary?lang=en"><img src="../../static/twitter.png" alt="Twitter" class="mobileNavSocialLinkImg"></a>
25-
<a href="https://plus.google.com/+BiojsNet1/posts"><img src="../../static/google-plus.png" alt="Google Plus" class="mobileNavSocialLinkImg"></a>
2625
<a href="mailto:[email protected]"><img src="../../static/mail.png" alt="Mail" class="mobileNavSocialLinkImg"></a>
2726
</div>
2827
</div>
@@ -230,10 +229,10 @@ export default {
230229
justify-content: flex-start;
231230
background: #fff;
232231
margin: 0;
233-
-webkit-transition: 0.2s all ease-in;
234-
-moz-transition: 0.2s all ease-in;
235-
-o-transition: 0.2s all ease-in;
236-
transition: 0.2s all ease-in;
232+
-webkit-transition: 0.4s all cubic-bezier(1,0,0,1);
233+
-moz-transition: 0.4s all cubic-bezier(1,0,0,1);
234+
-o-transition: 0.4s all cubic-bezier(1,0,0,1);
235+
transition: 0.4s all cubic-bezier(1,0,0,1);
237236
span {
238237
padding-left: 30px;
239238
line-height: 60px;

static/google-plus.png

-3 KB
Binary file not shown.

0 commit comments

Comments
 (0)