From 79257321e0274a2a748dc3cb8b395422cfec5fa8 Mon Sep 17 00:00:00 2001 From: Dhruv Hooda Date: Thu, 20 Jul 2023 17:52:37 -0700 Subject: [PATCH 1/2] Update _icons.scss Add members icon for members channel thing --- src/addons/_icons.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/addons/_icons.scss b/src/addons/_icons.scss index 5fa38ec..d4ce5e9 100644 --- a/src/addons/_icons.scss +++ b/src/addons/_icons.scss @@ -74,6 +74,11 @@ svg:has(path[d^='M17 11V7C17 4.243']) { mask-image: url(mono.$lock-closed); } + + // Members channel + svg:has(path[d^='M14 8.00598C14 10.211 12.206 12.006']) { + mask-image: url(mono.$people); + } // Channel modifiers (locked/threads) .iconContainer-21RCa3 { From ed2c5cd5e9ffb529da867e9b25f09b35e658e64e Mon Sep 17 00:00:00 2001 From: Dhruv Hooda Date: Thu, 20 Jul 2023 17:53:31 -0700 Subject: [PATCH 2/2] Fixed single typo in CONTRIBUTING.md Changed ```npm run install -> npm install``` as npm run install does not exist and to install all the dependencies you would want to run npm install. --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index d764ebb..ff77637 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -10,7 +10,7 @@ This will help you get started. - Basic knowledge of the terminal/command prompt. Install Dependencies: -Open a terminal/command prompt and use the following command: `npm run install` in the Fluent folder. +Open a terminal/command prompt and use the following command: `npm install` in the Fluent folder. ## Development