You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I don't like the horizontal scrollbar in the middle of the black window between HTML and C# code (in a div with the blazorise-codeblock CSS class) on the https://preview.blazorise.com/docs/components/accordion page and on many other pages, e.g. Components > Alert, Card, Grid etc.
This can be solved by displaying a single scroll bar at the bottom of the black window using this CSS:
.blazorise-codeblock pre { overflow: visible; } /* removes separate scrollbars */
.blazorise-codeblock { overflow: auto; } /* adds one scrollbar for both HTML and C# code */
The text was updated successfully, but these errors were encountered:
I don't like the horizontal scrollbar in the middle of the black window between HTML and C# code (in a div with the
blazorise-codeblock
CSS class) on the https://preview.blazorise.com/docs/components/accordion page and on many other pages, e.g. Components > Alert, Card, Grid etc.This can be solved by displaying a single scroll bar at the bottom of the black window using this CSS:
The text was updated successfully, but these errors were encountered: