/*
 * Styles applied only when running in Hotwire Native apps.
 * Loaded conditionally via: stylesheet_link_tag "native" if hotwire_native_app?
 */

/* Hide elements that have native equivalents (nav bars, tab bars, buttons) */
.hide-native {
  display: none !important;
}

/* Prevent text selection and iOS callout popover on sortable items */
[data-sortable-id] {
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}
