Fix: responsive issue conversations hamburger menu (#2036)

This commit is contained in:
Sivin Varghese
2021-04-01 20:57:43 +05:30
committed by GitHub
parent c8b81b066b
commit de72530022
3 changed files with 6 additions and 2 deletions

View File

@@ -3,7 +3,6 @@
<slot></slot>
<div class="chat-list__top">
<h1 class="page-title text-truncate" :title="pageTitle">
<woot-sidemenu-icon />
{{ pageTitle }}
</h1>
<chat-filter @statusFilterChange="updateStatusType" />

View File

@@ -3,7 +3,6 @@
</template>
<script>
/* global bus */
export default {
methods: {
onMenuItemClick() {
@@ -12,3 +11,8 @@ export default {
},
};
</script>
<style lang="scss" scoped>
.ion-android-menu {
font-size: var(--font-size-big);
}
</style>