/**
 *  Media query breakpoints.
 *
 *  Unfortunately we can't define the breakpoints using css variables to define the breakpoints throughout the application
 *  as the media queries do not support them. This file is here to document the breakpoints used within this application.
 *
 *  @copyright  2023 - 2024 Vinacles BV
 *  @author     Clyde Semeleer
 */

/**
// make the overview responsive on small devices
@media (max-width: 480px) {

    // your css here

}

// make overview responsive on tablet like devices
@media (min-width: 480px) and (max-width: 800px) {

    // your css here

}

// make overview responsive on devices with no large resolution
@media (min-width: 800px) and (max-width: 1200px) {

   // your css here

}
*/
