Agent Assist Icon in Contextual Sidebar of KB Knowledge Record is Not Having Scroll Down OptionIssueThe Agent Assist icon in the contextual sidebar of the KB knowledge record is not having the scroll down option. Steps to reproduce:1. Log on to instance2. Open the Configurable workspace.3. Open a knowledge article from the list view.4. Click on the Edit button.5. Open the Agent assist from the contextual sidebar.6. Observe that the scroll down feature is not present. CauseBy default, the CSS does not have that option activated.Resolution1. Go to UI Builder and open the Configurable workspace.2. Go to the variant "Record" => Default.3. Scroll to the Tab sidebar.4. Click on the Agent Assist.5. Click on the Styles tab.6. Scroll down and click on "Show advanced configuration options".7. Click on "View and edit CSS".8. Replace the entry. *{ display: flex; width: 100%; min-height: 300px; } With this entry: *{ display: flex; width: 100%; flex-direction: column; height: 100%; position: relative; } 9. Save.