diff --git a/src/pages/01_branch-management/MainPage.vue b/src/pages/01_branch-management/MainPage.vue
index 12caf845..5e770b65 100644
--- a/src/pages/01_branch-management/MainPage.vue
+++ b/src/pages/01_branch-management/MainPage.vue
@@ -17,7 +17,7 @@ import {
} from 'stores/branch/types';
import { Status } from 'src/stores/types';
-import useUtilsStore, { dialog } from 'src/stores/utils';
+import useUtilsStore, { dialog, baseUrl } from 'src/stores/utils';
import AddButton from 'components/AddButton.vue';
import TooltipComponent from 'components/TooltipComponent.vue';
import StatCard from 'components/StatCardComponent.vue';
@@ -1067,12 +1067,35 @@ watch(currentHq, () => {
margin-bottom: var(--size-2);
"
>
-
@@ -1997,9 +2020,14 @@ watch(currentHq, () => {
.branch-card__icon {
background-color: hsla(var(--_branch-card-bg) / 0.15);
border-radius: 50%;
- padding: var(--size-1);
+ padding: var(--size-2);
position: relative;
+ width: 3rem;
transform: rotate(45deg);
+ aspect-ratio: 1;
+ display: flex;
+ align-items: center;
+ justify-content: center;
&::after {
content: ' ';
diff --git a/src/stores/utils/index.ts b/src/stores/utils/index.ts
index b289f934..c3a15b43 100644
--- a/src/stores/utils/index.ts
+++ b/src/stores/utils/index.ts
@@ -4,6 +4,8 @@ import { ComposerTranslation, useI18n } from 'vue-i18n';
import { defineStore } from 'pinia';
import { Ref, ref } from 'vue';
+export const baseUrl = import.meta.env.VITE_API_BASE_URL;
+
export function dialog(opts: {
title: string;
message: string;