Skip to content

Commit 305d530

Browse files
committed
Signed-off-by: RAWx18 <rawx18.dev@gmail.com>
1 parent ca805fb commit 305d530

File tree

13 files changed

+68
-30
lines changed

13 files changed

+68
-30
lines changed

frontend/src/modules/activity/pages/activity-list-page.vue

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<div class="activity-list-page">
44
<div class="flex justify-between">
55
<div>
6-
<h4 class="text-white font-mono text-2xl font-bold">
6+
<h4 class="text-white font-mono text-2xl font-bold mt-8">
77
Activities
88
</h4>
99
<div class="text-xs text-zinc-400 font-mono mb-10 mt-2">
@@ -13,14 +13,14 @@
1313
</div>
1414
<div class="flex">
1515
<el-button
16-
class="btn btn--transparent btn--md text-white border-zinc-700 bg-zinc-900 hover:border-zinc-600 mr-4"
16+
class="btn btn--transparent btn--md text-white border-zinc-700 bg-zinc-900 hover:border-zinc-600 mr-4 mt-8"
1717
@click="isActivityTypeDrawerOpen = true"
1818
>
1919
<i class="ri-settings-3-line text-lg mr-2 text-orange-500" />
2020
<span class="font-mono">Activity types</span>
2121
</el-button>
2222
<el-button
23-
class="btn btn--primary btn--md bg-orange-500 hover:bg-orange-600 border-orange-500"
23+
class="btn btn--primary btn--md bg-orange-500 hover:bg-orange-600 border-orange-500 mt-8"
2424
@click="isActivityDrawerOpen = true"
2525
>
2626
<span class="font-mono text-black font-bold">Add activity</span>
@@ -29,7 +29,7 @@
2929
</div>
3030

3131
<div class="relative">
32-
<el-tabs :model-value="activeView" class="mb-6" @update:model-value="changeView">
32+
<el-tabs :model-value="activeView" class="mb-6" @update:model-value="changeView" id="internal-multitab-bar">
3333
<el-tab-pane
3434
label="Activities"
3535
name="activity"
@@ -39,6 +39,7 @@
3939
name="conversation"
4040
/>
4141
</el-tabs>
42+
<div style="margin-bottom: 20px;"></div>
4243
</div>
4344
<app-activity-list
4445
v-if="activeView === 'activity'"
@@ -108,4 +109,14 @@ const edit = (activity) => {
108109
};
109110
</script>
110111

111-
<style></style>
112+
<style scoped>
113+
#internal-multitab-bar {
114+
min-height: 56px;
115+
margin-bottom: 24px;
116+
}
117+
@media (min-width: 768px) {
118+
#internal-multitab-bar {
119+
min-height: 68px;
120+
}
121+
}
122+
</style>

frontend/src/modules/auth/pages/profile-form-page.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<template>
22
<app-page-wrapper size="narrow">
33
<div class="profile-form-page">
4-
<h4 class="mb-6">
4+
<h4 class="mb-4 mt-8">
55
Account settings
66
</h4>
77
<el-container

frontend/src/modules/automation/pages/automation-page.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<template>
22
<app-page-wrapper>
33
<div class="settings">
4-
<h4 class="text-white font-mono text-2xl font-bold mb-6">
4+
<h4 class="text-white font-mono text-2xl font-bold mb-2 mt-8">
55
Automations
66
</h4>
77
<app-automation-list />

frontend/src/modules/dashboard/components/dashboard-activities.vue

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@
5959
</div>
6060

6161
<div class="dashboard-tabs">
62-
<el-tabs v-model="tab">
62+
<el-tabs v-model="tab" id="internal-multitab-bar">
6363
<el-tab-pane
6464
label="Trending conversations"
6565
name="trending"
@@ -151,4 +151,13 @@ export default {
151151
@apply -mx-6 #{!important};
152152
}
153153
}
154+
#internal-multitab-bar {
155+
min-height: 56px;
156+
margin-bottom: 24px;
157+
}
158+
@media (min-width: 768px) {
159+
#internal-multitab-bar {
160+
min-height: 68px;
161+
}
162+
}
154163
</style>

frontend/src/modules/dashboard/pages/dashboard-page.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,12 +15,12 @@
1515
class="py-8 -mx-4 px-4 sticky -top-6 bg-black z-20 flex items-center justify-between border-b border-zinc-700"
1616
>
1717
<h4
18-
class="leading-8 font-semibold transition-all duration-100 text-white font-mono"
18+
class="leading-8 font-semibold transition-all duration-100 text-white font-mono mt-8"
1919
:class="scrolled ? 'text-base' : 'text-xl'"
2020
>
2121
{{ currentTenant?.name }} team overview
2222
</h4>
23-
<div class="text-sm flex items-center gap-2">
23+
<div class="text-sm flex items-center gap-2 mt-8">
2424
<i class="text-orange-500 ri-time-line text-base" />
2525
<span class="text-zinc-400 font-mono text-xs">Data on this page is refreshed every 15 min.</span>
2626
</div>
@@ -54,7 +54,7 @@
5454
}"
5555
>
5656
<app-dashboard-guides v-if="!isQuickstartEnabled()" />
57-
<app-dashboard-integrations class="mb-10" />
57+
<app-dashboard-integrations class="mb-10 mt-8" />
5858
<app-dashboard-task />
5959
</aside>
6060
</div>

frontend/src/modules/integration/components/integration-list-page.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<template>
22
<app-page-wrapper>
3-
<h4 class="text-white font-mono text-2xl font-bold mb-4">Integrations</h4>
3+
<h4 class="text-white font-mono text-2xl font-bold mb-2 mt-8">Integrations</h4>
44
<div class="flex items-center justify-between">
55
<div class="text-xs text-zinc-400 font-mono">
66
Connect with all data sources that are relevant to

frontend/src/modules/member/pages/member-list-page.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<div class="member-list-page !bg-black min-h-screen">
44
<div class="mb-10">
55
<div class="flex items-center justify-between">
6-
<h4 class="text-white font-mono text-2xl font-bold">
6+
<h4 class="text-white font-mono text-2xl font-bold mt-8">
77
Contacts
88
</h4>
99
<div class="flex items-center">
@@ -14,7 +14,7 @@
1414
name: 'memberMergeSuggestions',
1515
}"
1616
>
17-
<button :disabled="isEditLockedForSampleData" type="button" class="btn btn--bordered btn--md flex items-center border-zinc-700 bg-zinc-900 hover:border-zinc-600">
17+
<button :disabled="isEditLockedForSampleData" type="button" class="btn btn--bordered btn--md flex items-center border-zinc-700 bg-zinc-900 hover:border-zinc-600 mt-8">
1818
<span class="ri-shuffle-line text-base mr-2 text-white" />
1919
<span class="text-white font-mono">Merge suggestions</span>
2020
<span
@@ -38,7 +38,7 @@
3838
}"
3939
>
4040
<el-button
41-
class="btn btn--primary btn--md"
41+
class="btn btn--primary btn--md mt-8"
4242
:disabled="isCreateLockedForSampleData"
4343
>
4444
Add contact

frontend/src/modules/member/pages/member-view-page.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
class="col-span-2"
2727
/>
2828
<div class="panel w-full col-span-2">
29-
<el-tabs v-model="tab">
29+
<el-tabs v-model="tab" id="internal-multitab-bar">
3030
<el-tab-pane
3131
label="Activities"
3232
name="activities"
@@ -52,6 +52,7 @@
5252
<app-member-view-notes :member="member" />
5353
</el-tab-pane>
5454
</el-tabs>
55+
<div style="margin-bottom: 20px;"></div>
5556
</div>
5657
</div>
5758
</div>

frontend/src/modules/organization/pages/organization-list-page.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<div class="mb-10">
55
<div class="flex items-center justify-between">
66
<div class="flex items-center">
7-
<h4 class="text-white font-mono text-2xl font-bold">Organizations</h4>
7+
<h4 class="text-white font-mono text-2xl font-bold mt-8">Organizations</h4>
88
</div>
99
<div class="flex items-center">
1010
<router-link
@@ -14,7 +14,7 @@
1414
name: 'organizationMergeSuggestions',
1515
}"
1616
>
17-
<button :disabled="isEditLockedForSampleData" type="button" class="btn btn--bordered btn--md flex items-center border-zinc-700 bg-zinc-900 hover:border-zinc-600">
17+
<button :disabled="isEditLockedForSampleData" type="button" class="btn btn--bordered btn--md flex items-center border-zinc-700 bg-zinc-900 hover:border-zinc-600 mt-8">
1818
<span class="ri-shuffle-line text-base mr-2 text-white" />
1919
<span class="text-white font-mono">Merge suggestions</span>
2020
<span
@@ -34,7 +34,7 @@
3434
}"
3535
>
3636
<el-button
37-
class="btn btn--primary btn--md"
37+
class="btn btn--primary btn--md mt-8"
3838
:disabled="isCreateLockedForSampleData"
3939
>
4040
Add organization

frontend/src/modules/organization/pages/organization-view-page.vue

Lines changed: 13 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
/>
2424
</div>
2525
<div class="panel w-full col-span-2">
26-
<el-tabs v-model="tab">
26+
<el-tabs v-model="tab" id="internal-multitab-bar">
2727
<el-tab-pane
2828
label="Current contacts"
2929
name="contacts"
@@ -55,6 +55,7 @@
5555
/>
5656
</el-tab-pane>
5757
</el-tabs>
58+
<div style="margin-bottom: 20px;"></div>
5859
</div>
5960
</div>
6061
</div>
@@ -96,8 +97,14 @@ onMounted(() => {
9697
});
9798
</script>
9899

99-
<script>
100-
export default {
101-
name: 'organizationView',
102-
};
103-
</script>
100+
<style scoped>
101+
#internal-multitab-bar {
102+
min-height: 56px;
103+
margin-bottom: 24px;
104+
}
105+
@media (min-width: 768px) {
106+
#internal-multitab-bar {
107+
min-height: 68px;
108+
}
109+
}
110+
</style>

0 commit comments

Comments
 (0)