hikari-components 0.1.5

Core UI components (40+) for the Hikari design system
// Use theme variables with namespace to avoid conflicts
@use '../../../../theme/styles/variables.scss' as vars;

// ============================================
// Hikari Container Component
// ============================================

.hi-container {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

// Responsive max-widths
.hi-container-sm {
  max-width: 640px;
}

.hi-container-lg {
  max-width: 1024px;
}

.hi-container-xl {
  max-width: 1280px;
}

.hi-container-xxl {
  max-width: 1536px;
}