diff options
| author | Henry Jameson <me@hjkos.com> | 2022-04-20 23:22:51 +0300 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2022-04-20 23:22:51 +0300 |
| commit | 58a975e8df0d72ea330a6120195cc9bc374d68ad (patch) | |
| tree | abb8f14e4fcbb02158cb609ccbd4c6f56e69caf4 /src/components/chat_new | |
| parent | 076c52788b46258078ce2d83fdac82d75692c74b (diff) | |
cleanup and fixes
Diffstat (limited to 'src/components/chat_new')
| -rw-r--r-- | src/components/chat_new/chat_new.scss | 8 | ||||
| -rw-r--r-- | src/components/chat_new/chat_new.vue | 6 |
2 files changed, 7 insertions, 7 deletions
diff --git a/src/components/chat_new/chat_new.scss b/src/components/chat_new/chat_new.scss index 5506143d..240e1a38 100644 --- a/src/components/chat_new/chat_new.scss +++ b/src/components/chat_new/chat_new.scss @@ -22,10 +22,10 @@ } .go-back-button { - cursor: pointer; - width: 28px; text-align: center; - padding: 0.6em; - margin: -0.6em 0.6em -0.6em -0.6em; + line-height: 1; + height: 100%; + align-self: start; + width: var(--__panel-heading-height-inner); } } diff --git a/src/components/chat_new/chat_new.vue b/src/components/chat_new/chat_new.vue index 0790bb37..bf09a379 100644 --- a/src/components/chat_new/chat_new.vue +++ b/src/components/chat_new/chat_new.vue @@ -6,15 +6,15 @@ ref="header" class="panel-heading" > - <a - class="go-back-button" + <button + class="button-unstyled go-back-button" @click="goBack" > <FAIcon size="lg" icon="chevron-left" /> - </a> + </button> </div> <div class="input-wrap"> <div class="input-search"> |
