👾Rtl Layout

To make RTL layout in the theme change value.

const rtl_layout = 'true';

To make LTR layout in the theme change value.

const rtl_layout = 'false';

our default theme layout is LTR

Updated the Body Tag In the Views/Shared/_Layout.cshtml file, locate the <body> tag. Update or add the data-pc-theme attribute as shown below to apply the dark theme:

<body data-pc-direction="ltr">

Last updated