From 47f4eafbf0e4d809cc10c4813b2cb7c4c76be42f Mon Sep 17 00:00:00 2001 From: Oliver Lazoroski Date: Tue, 23 Jan 2024 14:18:53 +0100 Subject: [PATCH] chore(docs): update theming-v1 links (#2248) Updates a few dead links in the legacy theming guide. --- docusaurus/docs/React/guides/theming/css-and-theming.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docusaurus/docs/React/guides/theming/css-and-theming.mdx b/docusaurus/docs/React/guides/theming/css-and-theming.mdx index ecdab28e6..f61db5d5c 100644 --- a/docusaurus/docs/React/guides/theming/css-and-theming.mdx +++ b/docusaurus/docs/React/guides/theming/css-and-theming.mdx @@ -106,7 +106,7 @@ that makes the list UI perform optimally. ### CSS Variables To make more sweeping stylistic changes to the default CSS, the library exposes a variety of -[CSS variables](https://github.com/GetStream/stream-chat-css/blob/main/src/styles/_variables.scss) that can be +[CSS variables](https://github.com/GetStream/stream-chat-css/blob/main/src/v1/_variables.scss) that can be adjusted with props. The `Chat` component accepts a `customStyles` prop, an object type with keys as the CSS variables you wish to change and values for the corresponding, adjusted CSS. @@ -190,6 +190,6 @@ const darkModeTheme: CustomStyles = { #### Variables Reference A complete reference of all supported CSS variables, as well as their default values, can be found within our -[SCSS variables file](https://github.com/GetStream/stream-chat-css/blob/main/src/styles/_variables.scss). +[SCSS variables file](https://github.com/GetStream/stream-chat-css/blob/main/src/v1/_variables.scss). Any of the CSS variables (prepended with `--`) can be overridden via the `customStyles` approach detailed above.