website_theme.py issue

line 79
should change

			context.web_include_css = ["website_theme.css"] + context.web_include_css

to

			context.web_include_css = context.web_include_css + ["website_theme.css"] 

because, if website_theme.css is loaded before /assets/css/frappe-web.css and /assets/erpnext/css/website.css , then the css content in website_theme.css will not work (the css content in frappe-web.css or website.css will override the css content in website_theme.css).

1 Like