diff --git a/client/assets/styles/colours.less b/client/assets/styles/colours.less index 01a6b033..ea51f3ff 100644 --- a/client/assets/styles/colours.less +++ b/client/assets/styles/colours.less @@ -73,20 +73,19 @@ svg { } .red-blue-border { - animation: rb 3s ease-in-out 0s infinite alternate; + animation: rb 2s cubic-bezier(1, 0, 0, 1) 0s infinite alternate; } .red-green-border { - animation: rg 3s ease-in-out 0s infinite alternate; + animation: rg 2s cubic-bezier(1, 0, 0, 1) 0s infinite alternate; } .blue-green-border { - animation: bg 3s ease-in-out 0s infinite alternate; + animation: bg 2s cubic-bezier(1, 0, 0, 1) 0s infinite alternate; } @keyframes rg { from { border-color: @red; } - to { border-color: @green; } @@ -96,7 +95,6 @@ svg { from { border-color: @red; } - to { border-color: @blue; } @@ -106,7 +104,6 @@ svg { from { border-color: @blue; } - to { border-color: @green; } @@ -122,6 +119,4 @@ button { &.green { border-color: @green; } - - } \ No newline at end of file