Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/marius-wieschollek/passwords-webextension.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarius David Wieschollek <passwords.public@mdns.eu>2017-11-21 00:48:14 +0300
committerMarius David Wieschollek <passwords.public@mdns.eu>2017-11-21 00:48:14 +0300
commitec146a29666557aaa583f2bdfe9fb2a3f4131de9 (patch)
treea8e98e19ccfcb3c078648b539f236ca78d4f143b
parent7960a6b76bc49b3eab819cae36f49830b470c86d (diff)
Improved mobile animations1.3.0
-rw-r--r--src/vue/Partials/Login.vue24
1 files changed, 13 insertions, 11 deletions
diff --git a/src/vue/Partials/Login.vue b/src/vue/Partials/Login.vue
index 31bc83c..eb823cf 100644
--- a/src/vue/Partials/Login.vue
+++ b/src/vue/Partials/Login.vue
@@ -69,7 +69,8 @@
<style lang="scss">
.login {
display : block;
- padding : 10px;
+ padding : 0 10px;
+ line-height : 38px;
text-align : center;
cursor : pointer;
max-width : 100%;
@@ -88,19 +89,20 @@
transition : opacity 0.2s ease-in-out;
.fa {
- font-size : 12pt;
- display : inline-block;
- padding : 11px;
- min-width : 38px;
- text-align : center;
- box-sizing : border-box;
+ font-size : 12pt;
+ display : inline-block;
+ padding : 0 10px;
+ min-width : 38px;
+ line-height : 38px;
+ text-align : center;
+ box-sizing : border-box;
&.success {
- animation : blink-success 1s 3;
+ animation : blink-success 0.75s 2;
}
&.error {
- animation : blink-error 1s 3;
+ animation : blink-error 0.75s 2;
}
}
}
@@ -114,11 +116,11 @@
}
&.success {
- animation : blink-success 1s 3;
+ animation : blink-success 1s 2;
}
&.error {
- animation : blink-error 1s 3;
+ animation : blink-error 1s 2;
}
}