From f89fdf021960cda78406004d3e9b415f2344602e Mon Sep 17 00:00:00 2001 From: Emi Matchu Date: Tue, 23 Jan 2024 04:37:43 -0800 Subject: [PATCH] Fix item page contributor list styles Idk when and how this regressed, maybe I deleted a style I thought was unused? But yeah, this is how this was always intended to render. --- app/assets/stylesheets/items/_show.sass | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/app/assets/stylesheets/items/_show.sass b/app/assets/stylesheets/items/_show.sass index 4b585e0e..0c0c2f6e 100644 --- a/app/assets/stylesheets/items/_show.sass +++ b/app/assets/stylesheets/items/_show.sass @@ -22,11 +22,17 @@ body.items-show display: inline ul - li::after - content: ", " + display: inline + list-style: none + + li + display: inline - li:last-child::after - content: "." + &::after + content: ", " + + &:last-child::after + content: "." .nc-icon height: 16px