What product/components do you use and which version/fix level are you on?
Cumulocity latest
Is your question related to the free trial, or to a production (customer) instance?
customer instance
What are you trying to achieve? Please describe it in detail.
Our customer loves our B2B SAAS built on top of cumulocity
However as a widely frequent suggestion which is common amongst our all consumer is that ,the width of the Scorllbar of applicaiton should be bigger,as it will be more convinient for them to use
At present,Many Users struggles to find scrollbar when there is live monitoring in progress
I can confirm that the scrollbars are small with a width of 4px.
In the browser developer tools I was able to enlarge them temporarily to 14px, see screenshot.
But I don’t know how a way to change it permanently.
you need to apply a global branding and overwrite the default styling of Cumulocity’s scrollbar. There is some description available in the official documentation on how to define your own branding. You don’t need to install @c8y/style as this is already installed if you have set up your own c8y application. Create your own branding.less file and add following content to it:
@import '~@c8y/style/extend.less'; imports the default styling of Cumulocity, which you then extend by applying your own customized styling. In this case, the width and height of the scrollbar is set to 40px (for demo purposes).
You need to reference your branding.less in your package.json in the application options section:
You cannot apply styling for this from the configuration. You can clone the Application Builder source code and modify the index.less file. Steps to follow to clone and modify the source code.