diff --git a/src/App.vue b/src/App.vue index 84d2b203..c4638fe0 100644 --- a/src/App.vue +++ b/src/App.vue @@ -389,46 +389,56 @@
{{ member.did }}
@@ -143,6 +160,15 @@
@@ -338,7 +364,7 @@ export default class MembersList extends Vue { informAboutAdmission() { this.notify.info( - "This is to register people in Time Safari and to admit them to the meeting. A '+' symbol means they are not yet admitted and you can register and admit them. A '-' means you can remove them, but they will stay registered.", + "This is to register people in Time Safari and to admit them to the meeting. A (+) symbol means they are not yet admitted and you can register and admit them. A (-) symbol means you can remove them, but they will stay registered.", TIMEOUTS.VERY_LONG, ); } @@ -531,29 +557,23 @@ export default class MembersList extends Vue { .btn-add-contact { /* stylelint-disable-next-line at-rule-no-unknown */ - @apply ml-2 w-5 h-5 flex items-center justify-center rounded-full + @apply w-6 h-6 flex items-center justify-center rounded-full bg-green-100 text-green-600 hover:bg-green-200 hover:text-green-800 transition-colors; } -.btn-info-contact { +.btn-info-contact, +.btn-info-admission { /* stylelint-disable-next-line at-rule-no-unknown */ - @apply ml-2 mb-2 w-6 h-6 flex items-center justify-center rounded-full - bg-slate-100 text-slate-500 hover:bg-slate-200 hover:text-slate-800 + @apply w-6 h-6 flex items-center justify-center rounded-full + bg-slate-100 text-slate-400 hover:text-slate-600 transition-colors; } .btn-admission { - /* stylelint-disable-next-line at-rule-no-unknown */ - @apply w-5 h-5 flex items-center justify-center rounded-full - bg-blue-100 text-blue-600 hover:bg-blue-200 hover:text-blue-800 - transition-colors; -} - -.btn-info-admission { /* stylelint-disable-next-line at-rule-no-unknown */ @apply w-6 h-6 flex items-center justify-center rounded-full - bg-slate-100 text-slate-500 hover:bg-slate-200 hover:text-slate-800 + bg-blue-100 text-blue-600 hover:bg-blue-200 hover:text-blue-800 transition-colors; }