From 2a287b43449c63e69b44aaf68d8469e36cae46a3 Mon Sep 17 00:00:00 2001 From: Jason Zimdars Date: Thu, 12 Jun 2025 10:51:22 -0500 Subject: [PATCH] Need a little space in the layout for the drag/drop outline --- app/assets/stylesheets/card-columns.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/app/assets/stylesheets/card-columns.css b/app/assets/stylesheets/card-columns.css index 15e8f03b0..bb73f08b8 100644 --- a/app/assets/stylesheets/card-columns.css +++ b/app/assets/stylesheets/card-columns.css @@ -122,6 +122,8 @@ /* ------------------------------------------------------------------------ */ .cards--considering { + padding-inline-start: calc(var(--cards-gap) / 2); + .card { --text-xx-large: 1.6em; --text-small: 1.1em; @@ -248,4 +250,11 @@ } } } + + /* Doing + /* ------------------------------------------------------------------------ */ + + .cards--doing { + padding-inline-end: calc(var(--cards-gap) / 2); + } }