/** 
 * Project     : MkDocs Book Binder
 * File        : doc/docs/assets/styles/pdf-figures-fix.css
 * Type        : Stylesheet - CSS
 * Description : This file ensure figures best placement between PDF pages (It will be directly applied to the project later)
 * Author      : BRT - Briard Thibaud, <thibaud.brrd@eduge.ch>
**/

@media print {
  figure figcaption  {
    page-break-before: avoid;
  }

  figure img {
    display: block;
    margin: 0 auto;
  }
}
