RadzenPanel expand icon on left

103 Views Asked by At

I'm looking for a way to move the expand/collapse icon in a RadzenPanel from the (default) right to the left. Thank you in advance.

Radzen Panel

1

There are 1 best solutions below

0
On

Disregard. The solution is:

/* Move Expand/Collapse icon to the left */
.rz-panel-titlebar {
    display: flex;
    flex-direction: row-reverse;
}

.rz-panel-titlebar-icon {
    margin-right: 10px;
}