From 8e49569840e028e5ecb817710c88c2e91fb034c8 Mon Sep 17 00:00:00 2001 From: Montana Low Date: Thu, 18 Aug 2022 18:26:03 -0700 Subject: [PATCH] just do it --- pgml-dashboard/app/static/css/base.css | 10 ++++++++++ pgml-dashboard/app/templates/notebooks.html | 8 ++++---- 2 files changed, 14 insertions(+), 4 deletions(-) diff --git a/pgml-dashboard/app/static/css/base.css b/pgml-dashboard/app/static/css/base.css index 69c316db6..5e3fe39a6 100644 --- a/pgml-dashboard/app/static/css/base.css +++ b/pgml-dashboard/app/static/css/base.css @@ -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; } diff --git a/pgml-dashboard/app/templates/notebooks.html b/pgml-dashboard/app/templates/notebooks.html index 79454c9d9..19f60cec1 100644 --- a/pgml-dashboard/app/templates/notebooks.html +++ b/pgml-dashboard/app/templates/notebooks.html @@ -1,7 +1,7 @@ {% extends "base.html" %} {% block main %} -
+

newspaperNotebooks

@@ -19,10 +19,10 @@

{% endfor %} {% endif %} -

+ -
+

New notebook

@@ -36,5 +36,5 @@

New notebook

-
+ {% endblock %}