💄 improved ui in gantt view
This commit is contained in:
parent
3a9b3a8e67
commit
5a4c463b75
2 changed files with 14 additions and 12 deletions
|
|
@ -4,7 +4,7 @@
|
|||
<meta charset="UTF-8">
|
||||
<link rel="icon" href="/favicon.ico">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||||
<title>Vite App</title>
|
||||
<title>Micro Solution Platform</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="app"></div>
|
||||
|
|
|
|||
|
|
@ -232,19 +232,21 @@ const isDecember = (date) => date.getMonth() === 11;
|
|||
<option v-for="y in availableYears" :key="y" :value="y">{{ y }}</option>
|
||||
</select>
|
||||
</div>
|
||||
|
||||
<div class="actions">
|
||||
<input type="file" ref="fileInputRef" style="display: none" accept=".json" @change="handleImport" />
|
||||
|
||||
<button class="btn btn-io" @click="triggerImportClick">📥 Import JSON</button>
|
||||
<button class="btn btn-io" @click="handleExport">📤 Export JSON</button>
|
||||
<span class="divider-space">|</span>
|
||||
<button class="btn" @click="isTopicsModalOpen = true">Manage Topics</button>
|
||||
<button class="btn" @click="isProjectsModalOpen = true">Manage Projects</button>
|
||||
<button class="btn btn-primary" @click="isConfigModalOpen = true">Manage Config</button>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="actions">
|
||||
<input type="file" ref="fileInputRef" style="display: none" accept=".json" @change="handleImport" />
|
||||
|
||||
<button class="btn btn-io" @click="triggerImportClick">📥 Import JSON</button>
|
||||
<button class="btn btn-io" @click="handleExport">📤 Export JSON</button>
|
||||
<span class="divider-space">|</span>
|
||||
<button class="btn" @click="isTopicsModalOpen = true">Manage Topics</button>
|
||||
<button class="btn" @click="isProjectsModalOpen = true">Manage Projects</button>
|
||||
<button class="btn btn-primary" @click="isConfigModalOpen = true">Manage Config</button>
|
||||
</div>
|
||||
</div>
|
||||
<br>
|
||||
|
||||
<div class="timeline-card">
|
||||
<div class="timeline-header-row">
|
||||
|
|
|
|||
Loading…
Reference in a new issue