How to limit number of notification in the Flyout Menu ?

Hello : )
Vanilla : 2.2
Bootstrap theme
I can't find where/how to limit the number of notifications that is displayed when an user open the mebox notification flyout menu
The problem is that, when an user as, let say, 20 notifications : the menu will be very long.
thanks in advance for your help
0
Comments
Solved by adding this to my custom.css on my theme :
.MeBox .FlyoutMenu { max-height: 500px; overflow: hidden; overflow-y: scroll; }
But not sure if its the best way : )