From 35f1eadf16d8ae225b908eba28d4dd9c8d7b7a36 Mon Sep 17 00:00:00 2001 From: Roardom Date: Sat, 12 Oct 2024 15:51:44 +0000 Subject: [PATCH] add: css requirements to `CONTRIBUTING.md` --- CONTRIBUTING.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 69a14186b7..538fdb7061 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -96,6 +96,11 @@ Common syntax | Shorter and more readable syntax `->orderBy('age', 'desc')` | `->latest('age')` `->orderBy('created_at', 'asc')` | `->oldest()` +### CSS + +CSS should follow the [BEM methodology](https://getbem.com/) and the [7-1 SCSS Architecture](https://sass-guidelin.es/#the-7-1-pattern). + +Any new pages should use the existing component styles unless a new block, element and/or modifier is being added. It is highly discouraged to add new components when an existing one will do. ## Other