From dc6f0c2d3e83a785fd710ed926700145fad72295 Mon Sep 17 00:00:00 2001 From: jiv_e <831144+jiv-e@users.noreply.github.com> Date: Fri, 25 Oct 2019 11:16:33 +0300 Subject: [PATCH] Update Admin panel customization documentation Update outdated Styles section. --- docs/3.0.0-beta.x/admin-panel/customization.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/3.0.0-beta.x/admin-panel/customization.md b/docs/3.0.0-beta.x/admin-panel/customization.md index 4c5bc55022..0aa0ced84f 100644 --- a/docs/3.0.0-beta.x/admin-panel/customization.md +++ b/docs/3.0.0-beta.x/admin-panel/customization.md @@ -142,7 +142,7 @@ export default WysiwygWithErrors; The AdminUI package source can be easily found in `./node_modules/strapi-admin/src/`. -For example, to change the top-left displayed admin panel's color, `./node_modules/strapi-admin/admin/src/components/LeftMenuHeader/styles.scss` should be overriden by `./admin/src/components/LeftMenuHeader/styles.scss` with your own styles. +For example, to change the top-left displayed admin panel's color, copy the `./node_modules/strapi-admin/admin/src/components/LeftMenuHeader` folder to `./admin/src/components/LeftMenuHeader` and change the styles inside `./admin/src/components/LeftMenuHeader/Wrapper.js`. Thus, you are replacing the files that would normally be in `node_modules/strapi-admin/admin/src` and directing them to `admin/src/some/file/path`.