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
Updated `RadzenButton` components in `Home.razor` to use `Size="ButtonSize.Large"` for improved visibility and usability.
Simplified the step description in `Response.razor` by changing the `RadzenText` text from "Step #1: Choose or Create a Template" to "Step #1: Choose a Template," reflecting a streamlined process.
<RadzenButtonclass="step-button"Text="To get started enter your AI key on the Settings page"Click="@SettingsClicked"Style="background-color: green;"ButtonStyle="ButtonStyle.Primary" />
73
+
<RadzenButtonclass="step-button"Text="To get started enter your AI key on the Settings page"Click="@SettingsClicked"Style="background-color: green;"Size="ButtonSize.Large"ButtonStyle="ButtonStyle.Primary" />
74
74
}
75
75
else
76
76
{
77
77
@if (!KnowledgebaseFileExists)
78
78
{
79
-
<RadzenButtonclass="step-button"Text="Build your Knowledgebase"Click="@KnowledgebaseClicked"Style="background-color: green;"ButtonStyle="ButtonStyle.Primary" />
79
+
<RadzenButtonclass="step-button"Text="Build your Knowledgebase"Click="@KnowledgebaseClicked"Style="background-color: green;"Size="ButtonSize.Large"ButtonStyle="ButtonStyle.Primary" />
80
80
}
81
81
else
82
82
{
83
-
<RadzenButtonclass="step-button"Text="Click here to create an RFP Response"Click="@ResponseClicked"Style="background-color: green;"ButtonStyle="ButtonStyle.Primary" />
83
+
<RadzenButtonclass="step-button"Text="Click here to create an RFP Response"Click="@ResponseClicked"Style="background-color: green;"Size="ButtonSize.Large"ButtonStyle="ButtonStyle.Primary" />
0 commit comments