🌐 AI搜索 & 代理 主页
Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions pgml-dashboard/app/static/css/base.css
Original file line number Diff line number Diff line change
Expand Up @@ -516,9 +516,19 @@ nav ol, nav ul {
display: none;
}

main turbo-frame:first-of-type .notebook-cell {
border-top-left-radius: 10px;
border-top-right-radius: 10px;
border-top: 1px solid var(--gray-8);
}

.notebook-cell {
margin: 0 20px;
border-radius: 0;
padding: 1rem;
border: 1px solid var(--gray-8);
border-top: none;
border-bottom: none;
background: #fff;
}

Expand Down
8 changes: 4 additions & 4 deletions pgml-dashboard/app/templates/notebooks.html
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{% extends "base.html" %}

{% block main %}
<section>
<div>
<h1>
<span class="material-symbols-outlined">newspaper</span>Notebooks
</h1>
Expand All @@ -19,10 +19,10 @@ <h1>
{% endfor %}
</ol>
{% endif %}
</section>
</div>


<section>
<div>
<h2>New notebook</h2>

<form action="{% url 'notebooks/create' %}" method="post">
Expand All @@ -36,5 +36,5 @@ <h2>New notebook</h2>
<button class="next" type="submit">Create notebook</button>
</div>
</form>
</section>
</div>
{% endblock %}