Skip to content

Commit 7e4afa6

Browse files
fix: Usability and Alignments changes (microsoft#48)
* Name update and padding removed * fix home page padding and cards height * remove gap in tasks section
1 parent 93b710f commit 7e4afa6

File tree

4 files changed

+19
-7
lines changed

4 files changed

+19
-7
lines changed

src/frontend/wwwroot/app.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,16 +14,16 @@
1414
<div
1515
class="column asside border-right is-one-fifth is-flex is-flex-direction-column is-justify-content-space-between">
1616
<!-- App menu start -->
17-
<aside class="menu mx-3 mt-6">
17+
<aside class="menu mx-3 mt-5">
1818
<strong id="goHomeButton" class="menu-logo is-flex is-align-items-center">
1919
<img class="mr-3" src="../assets/app-logo.svg">
20-
<span>Multi-Agent - Custom Automation Engine</span>
20+
<span>Multi-Agent: Custom Automation Engine</span>
2121
</strong>
2222
<button id="newTaskButton" class="button is-fullwidth my-6">New task</button>
2323
<p class="menu-label">My tasks</p>
2424
<ul id="myTasksMenu" class="menu-list"></ul>
2525
</aside>
26-
<aside class="menu mx-3 mb-6">
26+
<aside class="menu mx-3">
2727
<p class="menu-label">Status</p>
2828
<ul id="tasksStats" class="menu-list"></ul>
2929
<p class="menu-label"></p>

src/frontend/wwwroot/home/home.css

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -258,3 +258,12 @@ textarea:disabled {
258258
.send-button:hover {
259259
color: #0056b3;
260260
}
261+
262+
.card.is-hoverable.quick-task > .card-content {
263+
min-height: 225px;
264+
}
265+
266+
.prompt-container {
267+
padding-top: 2rem;
268+
padding-bottom: 2rem;
269+
}

src/frontend/wwwroot/home/home.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<div class="orb two"></div>
1717
<div class="orb three"></div>
1818
</div>
19-
<section class="section is-flex is-flex-direction-column is-justify-content-center">
19+
<section class="section is-flex is-flex-direction-column is-justify-content-center prompt-container">
2020
<img class="app-logo" src="../assets/app-logo.svg">
2121
<span class="title mb-0"> Task list <span class="assistants"> Assistants</span> </span>
2222
<span class="description mt-0">Ask your AI team for help</span>

src/frontend/wwwroot/task/task.css

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,6 @@
2222
margin: 3rem 1rem;
2323
}
2424

25-
.task-asside .task-menu .menu-label:first-of-type {
26-
margin-top: 137px;
27-
}
2825

2926
.task-asside .title {
3027
font-size: 1.25rem;
@@ -35,6 +32,7 @@
3532

3633
.task-details {
3734
width: 100%;
35+
padding: 2rem;
3836
}
3937
.colChatSec {
4038
width: 55%;
@@ -269,3 +267,8 @@ textarea {
269267
.send-button:hover {
270268
color: #0056b3;
271269
}
270+
271+
.menu.task-menu {
272+
position: sticky;
273+
top: 0;
274+
}

0 commit comments

Comments
 (0)