
/* file : includes/css/style.css */

/* ซ่อน scrollbar ของ browser */
html::-webkit-scrollbar {
  display: none;
}
html {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

/* เว้นพื้นที่ให้ scrollbar browser  */
/* อนาคตถ้าใช้ WebView Mobile หรือ WebView Desktop ให้เอาออกได้
   ถึงแม้จะไม่มีผลกระทบอะไรก็ตาม */
/* html { scrollbar-gutter: stable; } */


/* ซ่อน scrollbar ที่อยู่ใน contrainer สำหรับ Chrome, Safari */
.scrollbar-hide::-webkit-scrollbar {
  display: none;
}

/* ซ่อน scrollbar ที่อยู่ใน contrainer  สำหรับ Firefox */
.scrollbar-hide {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

  
/* PWA Splash Screen */
@media (display-mode: standalone) {
  body {
    user-select: none;
    -webkit-user-select: none;
  }
}