Disable notifications section animation on mobile

If you don't want the notification section hides when scrolling down on mobile version, but always keep it showing, you can use the following CSS code:

@media (max-width: 768px) {	#notification-panel-bottom.anim {           opacity: 1;           visibility: visible;           transform: none;  }}

You need to add this code to Customize > Additional CSS and save changes.