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>
|
||||
</nav>
|
||||
|
||||
<main class="container mt-5">
|
||||
<main class="{% block container_class %}container{% endblock %} mt-5">
|
||||
{% block content %}
|
||||
{% endblock %}
|
||||
</main>
|
||||
|
||||
@ -3,6 +3,8 @@
|
||||
|
||||
{% block title %}Chat{% endblock %}
|
||||
|
||||
{% block container_class %}container-fluid{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<div class="chat-container">
|
||||
<!-- Sidebar -->
|
||||
|
||||
@ -4,10 +4,7 @@
|
||||
{% block title %}AI Task Manager - Home{% endblock %}
|
||||
|
||||
{% 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="col-lg-8">
|
||||
|
||||
@ -4,11 +4,10 @@
|
||||
|
||||
{% block title %}AI Task Manager - Kanban Board{% endblock %}
|
||||
|
||||
{% block container_class %}container-fluid{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<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">
|
||||
<div class="loader-overlay" style="display: none;">
|
||||
|
||||
@ -245,14 +245,13 @@ body {
|
||||
}
|
||||
|
||||
.kanban-column {
|
||||
flex: 1 1 300px; /* Flex-grow, flex-shrink, and basis */
|
||||
min-width: 300px;
|
||||
max-width: 320px;
|
||||
flex: 1 1 18rem;
|
||||
min-width: 16rem;
|
||||
max-width: 18rem;
|
||||
background-color: #f0f2f5;
|
||||
border-radius: 0.5rem;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
max-height: calc(100vh - 250px); /* Adjust based on your layout */
|
||||
}
|
||||
|
||||
.kanban-column h2 {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user