Scheduler Button Today size style

Radzen Blazor Scheduler Webassembly

Hi

1 We can modify the style of the Today button by increasing the font size ? (navigation get too small on mobile)

2 We have how to put today button between the browsers <>, also increasing the size of the <>: < Today > ?

Thanks

Yes, you can change the button size with CSS. Use your browser's developer tools to find what its CSS class is.

Hi Korchev !!

Would you have an example of how to do this?

my code ...

@page "/Rdz_SchedulerOrg"

<RadzenScheduler @ref=@scheduler SlotRender=@OnSlotRender style="height: 768px;"
TItem="Appointment" Data=@appointments StartProperty="Start"
EndProperty="End" TodayText="Hoje"
TextProperty="Text" SelectedIndex="2"
SlotSelect=@OnSlotSelect AppointmentSelect=@OnAppointmentSelect AppointmentRender=@OnAppointmentRender>




@code {
RadzenScheduler scheduler;
Dictionary<DateTime, string> events = new Dictionary<DateTime, string>();

private class Appointment
{
	public DateTime Start { get; set; }
	public DateTime End { get; set; }
	public string Text { get; set; }
}

.......

Try this:

<RadzenScheduler style="--rz-scheduler-today-button-font-size: 34px; height: 768px" ...>

Hi!!

1 In what documentation do I find these tags like (--rz-scheduler-today-button-font-size) like the one you cited, because I want to increase the size of the browsers to keep up with the size of the text today ?

2 Is putting the Text Today button between browsers (< >) possible?

thanks

Those are CSS variables and not tags. You can find the complete source here: radzen-blazor/Radzen.Blazor/themes/components/blazor/_scheduler.scss at master · radzenhq/radzen-blazor · GitHub

Not sure what this means.

Hi !

thanks item 1, perfeito ! :heart: :brazil:

Hi!

item 2: It would be left in that format. Today between browsers < hoje >

thanks

Captura de tela 2023-07-01 174823