Skip to content
6 changes: 6 additions & 0 deletions src/time-slot-bar-week/time-slot-bar-week-days.style.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,7 @@ export const TimeSlotComponent = styled(TimeSlot)<TimeSlotCellProps>`
${(props) => {
if (props.$type === "vertical") {
return css`
position: relative;
max-width: 200px;
height: ${props.$height}px;
min-height: ${props.$height}px;
Expand All @@ -139,6 +140,11 @@ export const TimeSlotComponent = styled(TimeSlot)<TimeSlotCellProps>`
}
}}

&:focus-within {
outline: 2px solid ${Colour["focus-ring"]};
outline-offset: -2px;
}

${(props) => {
if (!props.$halfFill) {
return css`
Expand Down
Loading