mirror of
				https://github.com/MindWorkAI/AI-Studio.git
				synced 2025-11-04 05:20:21 +00:00 
			
		
		
		
	Improved the inner content scrolling to use the entire space available
This commit is contained in:
		
							parent
							
								
									ebe00812e2
								
							
						
					
					
						commit
						1c2fc04065
					
				@ -1,10 +1,12 @@
 | 
			
		||||
@using AIStudio.Chat
 | 
			
		||||
 | 
			
		||||
<MudText Typo="Typo.h3" Class="mb-2 mr-3">
 | 
			
		||||
    @(this.Title)
 | 
			
		||||
</MudText>
 | 
			
		||||
<div class="inner-scrolling-context">
 | 
			
		||||
 | 
			
		||||
<InnerScrolling HeaderHeight="6em">
 | 
			
		||||
    <MudText Typo="Typo.h3" Class="mb-2 mr-3">
 | 
			
		||||
        @(this.Title)
 | 
			
		||||
    </MudText>
 | 
			
		||||
 | 
			
		||||
    <InnerScrolling>
 | 
			
		||||
        <ChildContent>
 | 
			
		||||
            <MudForm @ref="@(this.form)" @bind-IsValid="@(this.inputIsValid)" @bind-Errors="@(this.inputIssues)" FieldChanged="@this.TriggerFormChange" Class="pr-2">
 | 
			
		||||
                <MudText Typo="Typo.body1" Align="Align.Justify" Class="mb-6">
 | 
			
		||||
@ -128,4 +130,5 @@
 | 
			
		||||
                }
 | 
			
		||||
            </MudStack>
 | 
			
		||||
        </FooterContent>
 | 
			
		||||
</InnerScrolling>
 | 
			
		||||
    </InnerScrolling>
 | 
			
		||||
</div>
 | 
			
		||||
@ -3,7 +3,7 @@
 | 
			
		||||
 | 
			
		||||
@inherits MSGComponentBase
 | 
			
		||||
 | 
			
		||||
<InnerScrolling FillEntireHorizontalSpace="@true" @ref="@this.scrollingArea" HeaderHeight="12.3em" MinWidth="36em">
 | 
			
		||||
<InnerScrolling FillEntireHorizontalSpace="@true" @ref="@this.scrollingArea" MinWidth="36em">
 | 
			
		||||
    <ChildContent>
 | 
			
		||||
        @if (this.ChatThread is not null)
 | 
			
		||||
        {
 | 
			
		||||
 | 
			
		||||
@ -1,23 +1,23 @@
 | 
			
		||||
@inherits MSGComponentBase
 | 
			
		||||
 | 
			
		||||
<div class="@this.Classes" style="@this.Styles">
 | 
			
		||||
<div class="@this.Classes" style="flex-grow: 1; overflow: hidden;">
 | 
			
		||||
    @if (this.HeaderContent is not null)
 | 
			
		||||
    {
 | 
			
		||||
        <div>
 | 
			
		||||
            @this.HeaderContent
 | 
			
		||||
        </div>
 | 
			
		||||
    }
 | 
			
		||||
    <div class="flex-auto overflow-auto">
 | 
			
		||||
    <div class="flex-auto overflow-auto mb-3">
 | 
			
		||||
        @this.ChildContent
 | 
			
		||||
        
 | 
			
		||||
        <div @ref="@this.AnchorAfterChildContent">
 | 
			
		||||
        <div style="max-height: 0.1em;" @ref="@this.AnchorAfterChildContent">
 | 
			
		||||
             
 | 
			
		||||
        </div>
 | 
			
		||||
    </div>
 | 
			
		||||
 | 
			
		||||
    @if (this.FooterContent is not null)
 | 
			
		||||
    {
 | 
			
		||||
        <MudPaper Class="pa-3 border-solid border rounded-lg">
 | 
			
		||||
        <MudPaper Class="pa-3 mb-3 border-solid border rounded-lg">
 | 
			
		||||
            @this.FooterContent
 | 
			
		||||
        </MudPaper>
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
@ -9,14 +9,6 @@ public partial class InnerScrolling : MSGComponentBase
 | 
			
		||||
    [Parameter]
 | 
			
		||||
    public bool FillEntireHorizontalSpace { get; set; }
 | 
			
		||||
    
 | 
			
		||||
    /// <summary>
 | 
			
		||||
    /// Set the height of anything above the scrolling content; usually a header.
 | 
			
		||||
    /// What we do is calc(100vh - HeaderHeight). Means, you can use multiple measures like
 | 
			
		||||
    /// 230px - 3em. Default is 3em.
 | 
			
		||||
    /// </summary>
 | 
			
		||||
    [Parameter]
 | 
			
		||||
    public string HeaderHeight { get; set; } = "3em";
 | 
			
		||||
    
 | 
			
		||||
    [Parameter]
 | 
			
		||||
    public RenderFragment? HeaderContent { get; set; }
 | 
			
		||||
    
 | 
			
		||||
@ -76,8 +68,6 @@ public partial class InnerScrolling : MSGComponentBase
 | 
			
		||||
 | 
			
		||||
    private string MinWidthStyle => string.IsNullOrWhiteSpace(this.MinWidth) ? string.Empty : $"min-width: {this.MinWidth};";
 | 
			
		||||
    
 | 
			
		||||
    private string Styles => this.FillEntireHorizontalSpace ? $"height: calc(100vh - {this.HeaderHeight} - {this.MainLayout.AdditionalHeight}); overflow-x: auto; min-width: 0; {this.MinWidthStyle}" : $"height: calc(100vh - {this.HeaderHeight} - {this.MainLayout.AdditionalHeight}); flex-shrink: 0; {this.MinWidthStyle}";
 | 
			
		||||
 | 
			
		||||
    private string Classes => this.FillEntireHorizontalSpace ? $"{this.Class} d-flex flex-column flex-grow-1" : $"{this.Class} d-flex flex-column";
 | 
			
		||||
    
 | 
			
		||||
    public async Task ScrollToBottom()
 | 
			
		||||
 | 
			
		||||
@ -1,8 +1,9 @@
 | 
			
		||||
@attribute [Route(Routes.ABOUT)]
 | 
			
		||||
 | 
			
		||||
<MudText Typo="Typo.h3" Class="mb-2">About MindWork AI Studio</MudText>
 | 
			
		||||
<div class="inner-scrolling-context">
 | 
			
		||||
    <MudText Typo="Typo.h3" Class="mb-2">About MindWork AI Studio</MudText>
 | 
			
		||||
 | 
			
		||||
<InnerScrolling HeaderHeight="6em">
 | 
			
		||||
    <InnerScrolling>
 | 
			
		||||
        <MudExpansionPanels Class="mb-3" MultiExpansion="@false">
 | 
			
		||||
            <ExpansionPanel HeaderIcon="@Icons.Material.Filled.Layers" HeaderText="Versions" IsExpanded="@true">
 | 
			
		||||
                <MudText>
 | 
			
		||||
@ -61,4 +62,5 @@
 | 
			
		||||
                <MudMarkdown Value="@LICENSE" OverrideHeaderTypo="@Markdown.OverrideHeaderTypo"/>
 | 
			
		||||
            </ExpansionPanel>
 | 
			
		||||
        </MudExpansionPanels>
 | 
			
		||||
</InnerScrolling>
 | 
			
		||||
    </InnerScrolling>
 | 
			
		||||
</div>
 | 
			
		||||
@ -1,11 +1,12 @@
 | 
			
		||||
@using AIStudio.Settings.DataModel
 | 
			
		||||
@attribute [Route(Routes.ASSISTANTS)]
 | 
			
		||||
 | 
			
		||||
<MudText Typo="Typo.h3" Class="mb-2 mr-3">
 | 
			
		||||
<div class="inner-scrolling-context">
 | 
			
		||||
    <MudText Typo="Typo.h3" Class="mb-2 mr-3">
 | 
			
		||||
        Assistants
 | 
			
		||||
</MudText>
 | 
			
		||||
    </MudText>
 | 
			
		||||
 | 
			
		||||
<InnerScrolling HeaderHeight="6em">
 | 
			
		||||
    <InnerScrolling>
 | 
			
		||||
            
 | 
			
		||||
        <MudText Typo="Typo.h4" Class="mb-2 mr-3">
 | 
			
		||||
            General
 | 
			
		||||
@ -48,4 +49,5 @@
 | 
			
		||||
            }
 | 
			
		||||
        </MudStack>
 | 
			
		||||
            
 | 
			
		||||
</InnerScrolling>
 | 
			
		||||
    </InnerScrolling>
 | 
			
		||||
</div>
 | 
			
		||||
@ -2,7 +2,9 @@
 | 
			
		||||
@using AIStudio.Settings.DataModel
 | 
			
		||||
@inherits MSGComponentBase
 | 
			
		||||
 | 
			
		||||
<MudText Typo="Typo.h3" Class="mb-2 mr-3">
 | 
			
		||||
<div class="inner-scrolling-context">
 | 
			
		||||
    
 | 
			
		||||
    <MudText Typo="Typo.h3" Class="mb-2 mr-3">
 | 
			
		||||
        @if (this.chatThread is not null && this.chatThread.WorkspaceId != Guid.Empty)
 | 
			
		||||
        {
 | 
			
		||||
            @($"Chat in Workspace \"{this.currentWorkspaceName}\"")
 | 
			
		||||
@ -11,16 +13,16 @@
 | 
			
		||||
        {
 | 
			
		||||
            @("Temporary Chat")
 | 
			
		||||
        }
 | 
			
		||||
</MudText>
 | 
			
		||||
    </MudText>
 | 
			
		||||
 | 
			
		||||
<ProviderSelection @bind-ProviderSettings="@this.providerSettings"/>
 | 
			
		||||
@if (this.AreWorkspacesVisible)
 | 
			
		||||
{
 | 
			
		||||
    <ProviderSelection @bind-ProviderSettings="@this.providerSettings"/>
 | 
			
		||||
    @if (this.AreWorkspacesVisible)
 | 
			
		||||
    {
 | 
			
		||||
        <MudSplitter Dimension="@this.ReadSplitterPosition" DimensionChanged="this.SplitterChanged" EnableSlide="@this.AreWorkspacesVisible" EnableMargin="@false" StartContentStyle="margin-right: 1em;" BarStyle="" EndContentStyle="margin-left: 1em;">
 | 
			
		||||
            <StartContent>
 | 
			
		||||
                @if (this.AreWorkspacesHidden)
 | 
			
		||||
                {
 | 
			
		||||
                <MudPaper Class="border border-solid rounded-lg">
 | 
			
		||||
                    <MudPaper Class="border border-solid rounded-lg mb-3">
 | 
			
		||||
                        <MudTooltip Text="Show your workspaces" Placement="@TOOLBAR_TOOLTIP_PLACEMENT">
 | 
			
		||||
                            <MudIconButton Size="Size.Large" Icon="@this.WorkspaceSidebarToggleIcon" OnClick="() => this.ToggleWorkspaceSidebar()"/>
 | 
			
		||||
                        </MudTooltip>
 | 
			
		||||
@ -32,22 +34,22 @@
 | 
			
		||||
                    {
 | 
			
		||||
                        @if (this.SettingsManager.ConfigurationData.Workspace.DisplayBehavior is WorkspaceDisplayBehavior.TOGGLE_SIDEBAR && this.SettingsManager.ConfigurationData.Workspace.IsSidebarVisible)
 | 
			
		||||
                        {
 | 
			
		||||
                        <InnerScrolling HeaderHeight="12.3em" FillEntireHorizontalSpace="@true" Class="border border-solid rounded-lg" MinWidth="26em">
 | 
			
		||||
                            <InnerScrolling FillEntireHorizontalSpace="@true" Class="border border-solid rounded-lg" MinWidth="26em">
 | 
			
		||||
                                <HeaderContent>
 | 
			
		||||
                                    <MudTooltip Text="Hide your workspaces" Placement="@TOOLBAR_TOOLTIP_PLACEMENT">
 | 
			
		||||
                                        <MudIconButton Size="Size.Large" Icon="@this.WorkspaceSidebarToggleIcon" OnClick="() => this.ToggleWorkspaceSidebar()"/>
 | 
			
		||||
                                    </MudTooltip>
 | 
			
		||||
                                </HeaderContent>
 | 
			
		||||
                                <ChildContent>
 | 
			
		||||
                                <Workspaces @ref="this.workspaces" @bind-CurrentChatThread="@this.chatThread" />
 | 
			
		||||
                                    <Workspaces @ref="this.workspaces" @bind-CurrentChatThread="@this.chatThread"/>
 | 
			
		||||
                                </ChildContent>
 | 
			
		||||
                            </InnerScrolling>
 | 
			
		||||
                        }
 | 
			
		||||
                        else
 | 
			
		||||
                        {
 | 
			
		||||
                        <InnerScrolling HeaderHeight="12.3em" FillEntireHorizontalSpace="@true" Class="border border-solid rounded-lg" MinWidth="26em">
 | 
			
		||||
                            <InnerScrolling FillEntireHorizontalSpace="@true" Class="border border-solid rounded-lg" MinWidth="26em">
 | 
			
		||||
                                <ChildContent>
 | 
			
		||||
                                <Workspaces @ref="this.workspaces" @bind-CurrentChatThread="@this.chatThread" />
 | 
			
		||||
                                    <Workspaces @ref="this.workspaces" @bind-CurrentChatThread="@this.chatThread"/>
 | 
			
		||||
                                </ChildContent>
 | 
			
		||||
                            </InnerScrolling>
 | 
			
		||||
                        }
 | 
			
		||||
@ -55,20 +57,18 @@
 | 
			
		||||
                }
 | 
			
		||||
            </StartContent>
 | 
			
		||||
            <EndContent>
 | 
			
		||||
            
 | 
			
		||||
                <ChatComponent
 | 
			
		||||
                    @bind-ChatThread="@this.chatThread"
 | 
			
		||||
                    @bind-Provider="@this.providerSettings"
 | 
			
		||||
                    Workspaces="@this.workspaces"
 | 
			
		||||
                WorkspaceName="name => this.currentWorkspaceName = name" />
 | 
			
		||||
 | 
			
		||||
                    WorkspaceName="name => this.currentWorkspaceName = name"/>
 | 
			
		||||
            </EndContent>
 | 
			
		||||
        </MudSplitter>
 | 
			
		||||
}
 | 
			
		||||
else if(this.SettingsManager.ConfigurationData.Workspace.StorageBehavior is not WorkspaceStorageBehavior.DISABLE_WORKSPACES && this.SettingsManager.ConfigurationData.Workspace.DisplayBehavior is WorkspaceDisplayBehavior.TOGGLE_SIDEBAR)
 | 
			
		||||
{
 | 
			
		||||
    <MudStack Row="@true" Style="width: 100%; overflow: hidden;">
 | 
			
		||||
        <MudPaper Class="border border-solid rounded-lg">
 | 
			
		||||
    }
 | 
			
		||||
    else if (this.SettingsManager.ConfigurationData.Workspace.StorageBehavior is not WorkspaceStorageBehavior.DISABLE_WORKSPACES && this.SettingsManager.ConfigurationData.Workspace.DisplayBehavior is WorkspaceDisplayBehavior.TOGGLE_SIDEBAR)
 | 
			
		||||
    {
 | 
			
		||||
        <MudStack Row="@true" Style="width: 100%; overflow: hidden; height: 100%; flex-grow: 1; min-height: 0;">
 | 
			
		||||
            <MudPaper Class="border border-solid rounded-lg mb-3">
 | 
			
		||||
                <MudTooltip Text="Show your workspaces" Placement="@TOOLBAR_TOOLTIP_PLACEMENT">
 | 
			
		||||
                    <MudIconButton Size="Size.Large" Icon="@this.WorkspaceSidebarToggleIcon" OnClick="() => this.ToggleWorkspaceSidebar()"/>
 | 
			
		||||
                </MudTooltip>
 | 
			
		||||
@ -80,20 +80,20 @@ else if(this.SettingsManager.ConfigurationData.Workspace.StorageBehavior is not
 | 
			
		||||
                Workspaces="@this.workspaces"
 | 
			
		||||
                WorkspaceName="name => this.currentWorkspaceName = name"/>
 | 
			
		||||
        </MudStack>
 | 
			
		||||
}
 | 
			
		||||
else
 | 
			
		||||
{
 | 
			
		||||
    }
 | 
			
		||||
    else
 | 
			
		||||
    {
 | 
			
		||||
        <ChatComponent
 | 
			
		||||
            @bind-ChatThread="@this.chatThread"
 | 
			
		||||
            @bind-Provider="@this.providerSettings"
 | 
			
		||||
            Workspaces="@this.workspaces"
 | 
			
		||||
            WorkspaceName="name => this.currentWorkspaceName = name"/>
 | 
			
		||||
}
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
@if (
 | 
			
		||||
    @if (
 | 
			
		||||
        this.SettingsManager.ConfigurationData.Workspace.StorageBehavior != WorkspaceStorageBehavior.DISABLE_WORKSPACES
 | 
			
		||||
        && this.SettingsManager.ConfigurationData.Workspace.DisplayBehavior is WorkspaceDisplayBehavior.TOGGLE_OVERLAY)
 | 
			
		||||
{
 | 
			
		||||
    {
 | 
			
		||||
        <MudDrawer @bind-Open="@this.workspaceOverlayVisible" Width="40em" Height="100%" Anchor="Anchor.Start" Variant="DrawerVariant.Temporary" Elevation="1">
 | 
			
		||||
            <MudDrawerHeader>
 | 
			
		||||
                <MudStack Row="@true" AlignItems="AlignItems.Center">
 | 
			
		||||
@ -104,7 +104,8 @@ else
 | 
			
		||||
                </MudStack>
 | 
			
		||||
            </MudDrawerHeader>
 | 
			
		||||
            <MudDrawerContainer Class="ml-6">
 | 
			
		||||
            <Workspaces @ref="this.workspaces" @bind-CurrentChatThread="@this.chatThread" />
 | 
			
		||||
                <Workspaces @ref="this.workspaces" @bind-CurrentChatThread="@this.chatThread"/>
 | 
			
		||||
            </MudDrawerContainer>
 | 
			
		||||
        </MudDrawer>
 | 
			
		||||
}
 | 
			
		||||
    }
 | 
			
		||||
</div>
 | 
			
		||||
@ -1,9 +1,10 @@
 | 
			
		||||
@attribute [Route(Routes.HOME)]
 | 
			
		||||
 | 
			
		||||
<MudImage Src="svg/banner.svg" />
 | 
			
		||||
<MudText Typo="Typo.h3" Class="mt-2 mb-2">Let's get started</MudText>
 | 
			
		||||
<div class="inner-scrolling-context">
 | 
			
		||||
    <MudImage Src="svg/banner.svg" Style="max-height: 22em; width: 100%; object-fit: cover;" />
 | 
			
		||||
    <MudText Typo="Typo.h3" Class="mt-2 mb-2">Let's get started</MudText>
 | 
			
		||||
 | 
			
		||||
<InnerScrolling HeaderHeight="288px - 8em">
 | 
			
		||||
    <InnerScrolling>
 | 
			
		||||
        <MudExpansionPanels Class="mb-3" MultiExpansion="@false">
 | 
			
		||||
 | 
			
		||||
            <ExpansionPanel HeaderIcon="@Icons.Material.Filled.MenuBook" HeaderText="Introduction" IsExpanded="@true">
 | 
			
		||||
@ -37,4 +38,5 @@
 | 
			
		||||
            </ExpansionPanel>
 | 
			
		||||
 | 
			
		||||
        </MudExpansionPanels>
 | 
			
		||||
</InnerScrolling>
 | 
			
		||||
    </InnerScrolling>
 | 
			
		||||
</div>
 | 
			
		||||
@ -1,9 +1,10 @@
 | 
			
		||||
@attribute [Route(Routes.SETTINGS)]
 | 
			
		||||
@using AIStudio.Components.Settings
 | 
			
		||||
 | 
			
		||||
<MudText Typo="Typo.h3" Class="mb-12">Settings</MudText>
 | 
			
		||||
<div class="inner-scrolling-context">
 | 
			
		||||
    <MudText Typo="Typo.h3" Class="mb-12">Settings</MudText>
 | 
			
		||||
 | 
			
		||||
<InnerScrolling HeaderHeight="10em">
 | 
			
		||||
    <InnerScrolling>
 | 
			
		||||
        <MudExpansionPanels Class="mb-3" MultiExpansion="@false">
 | 
			
		||||
            <SettingsPanelProviders @bind-AvailableLLMProviders="@this.availableLLMProviders" />
 | 
			
		||||
            <SettingsPanelEmbeddings AvailableLLMProvidersFunc="() => this.availableLLMProviders" @bind-AvailableEmbeddingProviders="@this.availableEmbeddingProviders" />
 | 
			
		||||
@ -28,4 +29,5 @@
 | 
			
		||||
            <SettingsPanelAssistantBias AvailableLLMProvidersFunc="() => this.availableLLMProviders" />
 | 
			
		||||
            <SettingsPanelAgentContentCleaner AvailableLLMProvidersFunc="() => this.availableLLMProviders" />
 | 
			
		||||
        </MudExpansionPanels>
 | 
			
		||||
</InnerScrolling>
 | 
			
		||||
    </InnerScrolling>
 | 
			
		||||
</div>
 | 
			
		||||
@ -1,8 +1,9 @@
 | 
			
		||||
@attribute [Route(Routes.SUPPORTERS)]
 | 
			
		||||
 | 
			
		||||
<MudText Typo="Typo.h3" Class="mb-2">Supporters</MudText>
 | 
			
		||||
<div class="inner-scrolling-context">
 | 
			
		||||
    <MudText Typo="Typo.h3" Class="mb-2">Supporters</MudText>
 | 
			
		||||
 | 
			
		||||
<InnerScrolling HeaderHeight="6em">
 | 
			
		||||
    <InnerScrolling>
 | 
			
		||||
            
 | 
			
		||||
        <div class="border-solid border-2 rounded-lg pa-3 mb-6">
 | 
			
		||||
            <MudText Typo="Typo.h4" Class="mb-2">Our Titans</MudText>
 | 
			
		||||
@ -60,4 +61,5 @@
 | 
			
		||||
            </MudItem>
 | 
			
		||||
        </MudGrid>
 | 
			
		||||
 | 
			
		||||
</InnerScrolling>
 | 
			
		||||
    </InnerScrolling>
 | 
			
		||||
</div>
 | 
			
		||||
@ -1,14 +1,15 @@
 | 
			
		||||
@attribute [Route(Routes.WRITER)]
 | 
			
		||||
@inherits MSGComponentBase
 | 
			
		||||
 | 
			
		||||
<MudText Typo="Typo.h3" Class="mb-2 mr-3">
 | 
			
		||||
<div class="inner-scrolling-context">
 | 
			
		||||
    <MudText Typo="Typo.h3" Class="mb-2 mr-3">
 | 
			
		||||
        Writer
 | 
			
		||||
</MudText>
 | 
			
		||||
    </MudText>
 | 
			
		||||
 | 
			
		||||
<PreviewExperimental/>
 | 
			
		||||
    <PreviewExperimental/>
 | 
			
		||||
 | 
			
		||||
<ProviderSelection @bind-ProviderSettings="@this.providerSettings"/>
 | 
			
		||||
<InnerScrolling HeaderHeight="12.3em">
 | 
			
		||||
    <ProviderSelection @bind-ProviderSettings="@this.providerSettings"/>
 | 
			
		||||
    <InnerScrolling>
 | 
			
		||||
        <ChildContent>
 | 
			
		||||
            <MudTextField
 | 
			
		||||
                @ref="@this.textField"
 | 
			
		||||
@ -54,4 +55,5 @@
 | 
			
		||||
                FullWidth="@true"
 | 
			
		||||
                UserAttributes="@USER_INPUT_ATTRIBUTES"/>
 | 
			
		||||
        </FooterContent>
 | 
			
		||||
</InnerScrolling>
 | 
			
		||||
    </InnerScrolling>
 | 
			
		||||
</div>
 | 
			
		||||
@ -210,6 +210,6 @@
 | 
			
		||||
        "type": "Project"
 | 
			
		||||
      }
 | 
			
		||||
    },
 | 
			
		||||
    "net8.0/osx-x64": {}
 | 
			
		||||
    "net8.0/osx-arm64": {}
 | 
			
		||||
  }
 | 
			
		||||
}
 | 
			
		||||
@ -75,3 +75,21 @@
 | 
			
		||||
.mud-navmenu .mud-tooltip-root {
 | 
			
		||||
    display: initial !important;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/* Context div for inner scrolling component */
 | 
			
		||||
.inner-scrolling-context {
 | 
			
		||||
    display: flex;
 | 
			
		||||
    flex-direction: column;
 | 
			
		||||
    height: 100vh;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/* Fixed MudSplitter inside context div for inner scrolling component */
 | 
			
		||||
.inner-scrolling-context > .mud-splitter {
 | 
			
		||||
    flex-grow: 1;
 | 
			
		||||
    overflow: hidden;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
/* Fixed the slider part of MudSplitter inside context div for inner scrolling component */
 | 
			
		||||
.inner-scrolling-context > .mud-splitter > .mud-slider > .mud-slider-container {
 | 
			
		||||
    padding-bottom: 12px;
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										2
									
								
								app/MindWork AI Studio/wwwroot/changelog/v0.9.27.md
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										2
									
								
								app/MindWork AI Studio/wwwroot/changelog/v0.9.27.md
									
									
									
									
									
										Normal file
									
								
							@ -0,0 +1,2 @@
 | 
			
		||||
# v0.9.27, build 202 (2025-01-xx xx:xx UTC)
 | 
			
		||||
- Improved the inner content scrolling to use the entire space available.
 | 
			
		||||
		Loading…
	
		Reference in New Issue
	
	Block a user