From 9c62207ae951b8c936c4bb720af6594d41b64e70 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=ADctor=20Losada=20Hern=C3=A1ndez?= Date: Thu, 10 Sep 2026 11:36:19 +0200 Subject: [PATCH] snippet colors --- .../basePages/listPage/brewItem/brewItem.less | 23 ++++++++++++++++++- .../pages/basePages/listPage/listPage.jsx | 4 ++-- .../pages/basePages/listPage/listPage.less | 2 +- 3 files changed, 25 insertions(+), 4 deletions(-) diff --git a/client/homebrew/pages/basePages/listPage/brewItem/brewItem.less b/client/homebrew/pages/basePages/listPage/brewItem/brewItem.less index 41b628450..59ab46c8a 100644 --- a/client/homebrew/pages/basePages/listPage/brewItem/brewItem.less +++ b/client/homebrew/pages/basePages/listPage/brewItem/brewItem.less @@ -269,6 +269,28 @@ display : inline-block; grid-area : tags; min-width : 100px; + + span { + color:#606060; + background-color: hsla(from #c1b673 h s l / 20% ); + } + .type { + color:#518251; + background-color: hsla(from currentColor h s l / 20% ); + } + .system { + color: #c55656; + background-color: hsla(from currentColor h s l / 20% ); + } + .group { + color : #525252; + background-color: hsla(from currentColor h s l / 20% ); + } + .meta { + color : #5050b1; + background-color: hsla(from currentColor h s l / 20% ); + } + } .brewAuthors { display : inline-block; @@ -379,7 +401,6 @@ padding : 10px; padding-top : 100px; padding-bottom : 50px; - margin : 10px; font-size : 13px; color : white; background-color : grey; diff --git a/client/homebrew/pages/basePages/listPage/listPage.jsx b/client/homebrew/pages/basePages/listPage/listPage.jsx index e17f99d95..2bfce14ea 100644 --- a/client/homebrew/pages/basePages/listPage/listPage.jsx +++ b/client/homebrew/pages/basePages/listPage/listPage.jsx @@ -294,13 +294,13 @@ const ListPage = ({ brewCollection = [{ title: '', class: '', brews: [] }], navI
diff --git a/client/homebrew/pages/basePages/listPage/listPage.less b/client/homebrew/pages/basePages/listPage/listPage.less index b48e5cfbf..982641d98 100644 --- a/client/homebrew/pages/basePages/listPage/listPage.less +++ b/client/homebrew/pages/basePages/listPage/listPage.less @@ -54,7 +54,7 @@ --columns : 4; display : grid; grid-template-columns : repeat(var(--columns), 1fr); - column-gap : 40px; + gap : 20px; justify-items : center; @media screen and (max-width : 1700px) {--columns : 3;}