This is an unfortunate side-effect of how reveal.js places slide page numbers in a separate <div> which is a sibling of the <div class="slides">. The latter gets dynamically resized via Javascript, so AFAICS the only way to correctly position the page number <div> relative to that is to set up a Javascript event handler which will also update the page number <div> to the same scaling ... but so far I didn't manage to find any reveal.js event/hook which would get called after resizing.
So it might require a pull request to reveal.js.
This is an unfortunate side-effect of how
reveal.jsplaces slide page numbers in a separate<div>which is a sibling of the<div class="slides">. The latter gets dynamically resized via Javascript, so AFAICS the only way to correctly position the page number<div>relative to that is to set up a Javascript event handler which will also update the page number<div>to the same scaling ... but so far I didn't manage to find anyreveal.jsevent/hook which would get called after resizing.So it might require a pull request to
reveal.js.