kanban tweaks
This commit is contained in:
parent
bdc139dfb9
commit
6f1ab9f30b
BIN
assets/pasted-20251123-153606-fc72d13a.png
Normal file
BIN
assets/pasted-20251123-153606-fc72d13a.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 226 KiB |
Binary file not shown.
@ -38,7 +38,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</nav>
|
</nav>
|
||||||
|
|
||||||
<main class="container mt-5">
|
<main class="{% block container_class %}container{% endblock %} mt-5">
|
||||||
{% block content %}
|
{% block content %}
|
||||||
{% endblock %}
|
{% endblock %}
|
||||||
</main>
|
</main>
|
||||||
|
|||||||
@ -3,6 +3,8 @@
|
|||||||
|
|
||||||
{% block title %}Chat{% endblock %}
|
{% block title %}Chat{% endblock %}
|
||||||
|
|
||||||
|
{% block container_class %}container-fluid{% endblock %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<div class="chat-container">
|
<div class="chat-container">
|
||||||
<!-- Sidebar -->
|
<!-- Sidebar -->
|
||||||
|
|||||||
@ -4,10 +4,7 @@
|
|||||||
{% block title %}AI Task Manager - Home{% endblock %}
|
{% block title %}AI Task Manager - Home{% endblock %}
|
||||||
|
|
||||||
{% block content %}
|
{% block content %}
|
||||||
<div class="hero-section text-center py-5">
|
|
||||||
<h1 class="display-4">AI Task Manager</h1>
|
|
||||||
<p class="lead">Your intelligent assistant for managing tasks and conversations.</p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="row justify-content-center">
|
<div class="row justify-content-center">
|
||||||
<div class="col-lg-8">
|
<div class="col-lg-8">
|
||||||
|
|||||||
@ -4,13 +4,12 @@
|
|||||||
|
|
||||||
{% block title %}AI Task Manager - Kanban Board{% endblock %}
|
{% block title %}AI Task Manager - Kanban Board{% endblock %}
|
||||||
|
|
||||||
{% block content %}
|
{% block container_class %}container-fluid{% endblock %}
|
||||||
<div class="hero-section text-center py-5">
|
|
||||||
<h1 class="display-4">Kanban Board</h1>
|
|
||||||
<p class="lead">Visualize your tasks and track progress.</p>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="kanban-board-container">
|
{% block content %}
|
||||||
|
|
||||||
|
|
||||||
|
<div class="kanban-board-container">
|
||||||
<div class="loader-overlay" style="display: none;">
|
<div class="loader-overlay" style="display: none;">
|
||||||
<div class="loader"></div>
|
<div class="loader"></div>
|
||||||
</div>
|
</div>
|
||||||
@ -52,7 +51,7 @@
|
|||||||
</div>
|
</div>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{% block scripts %}
|
{% block scripts %}
|
||||||
<script>
|
<script>
|
||||||
|
|||||||
@ -245,14 +245,13 @@ body {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.kanban-column {
|
.kanban-column {
|
||||||
flex: 1 1 300px; /* Flex-grow, flex-shrink, and basis */
|
flex: 1 1 18rem;
|
||||||
min-width: 300px;
|
min-width: 16rem;
|
||||||
max-width: 320px;
|
max-width: 18rem;
|
||||||
background-color: #f0f2f5;
|
background-color: #f0f2f5;
|
||||||
border-radius: 0.5rem;
|
border-radius: 0.5rem;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
max-height: calc(100vh - 250px); /* Adjust based on your layout */
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.kanban-column h2 {
|
.kanban-column h2 {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user