How do I change text size canvas kibana filter time

How do I change text size canvas kibana filter time

Hi @francieliton_araujo,

if you know the basis of html and css, you could tweak the text size by adding a custom css to the element, for example with adding:

.canvasRenderEl .euiDatePopoverButton{
    font-size: 25px;
}

you will get this result:


However, it's quite easy to make it look bad when modifying internal kibana styles in some edge cases so if you choose to do it, remember to test your solution.

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.