/* ============================================================
   RYX — community.css
   ============================================================ */

/* Imports core placeholder layout */
@import url('docs.css');

/* Make the satellite dish spin slowly */
.placeholder__icon i {
  animation: spin 8s linear infinite;
}

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}