I am using a custom CSS to add focus to all elements in my side bar app. This has been achieved for all elements except for the "introduction window" icon on the main page. The home button works but if I use focus on the info, it doesn't show.
For my own accessibility needs I require focus, so this is not just for public users but also a personal need. I have to make this work. Same with icon size, they are too small (need to be at least 24px), and I need to turn zoom on to see them.


This is my focus CSS:
:root, .calcite-mode-light {
--calcite-icon-color:#000000;
--calcite-color-focus: #1C1C6D;
}
Thanks!