Page 1 of 1

[REACT] How to add a vertical line in the starting of buffer time

Posted: Mon Feb 06, 2023 2:23 pm
by gorakh.nath

Hi team,
How can we override the style of buffer time that we are showing in calendar, I need to add a vertical line on starting of the buffer time line.
I have attached the expected and the current implementation that is coming.


Re: [REACT] How to add a vertical line in the starting of buffer time

Posted: Mon Feb 06, 2023 3:30 pm
by marcio

Hey gorakh.nath,

We don't have a custom property for that, but you can achieve that with a custom CSS like this

.b-sch-event-buffer.b-sch-event-buffer-before::before {
    content: "";
    width: 4px;
    height: 15px;
    background: #cccccc;
    margin-top: -6px;
}