canonrs-server 0.1.0

CanonRS server-side rendering support
/* ============================================
   EMPTY TABLE
   Family E: Feedback - Empty State for Tables
   ============================================ */

[data-rs-empty-table-row] {
  /* Row is just structural, no special styling */
}

[data-rs-empty-table-content] {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--empty-table-content-gap);
  padding: var(--empty-table-padding);
  text-align: center;
}

[data-rs-empty-table-title] {
  font-size: var(--empty-table-title-font-size);
  font-weight: var(--empty-table-title-font-weight);
  color: var(--empty-table-title-fg);
}

[data-rs-empty-table-description] {
  font-size: var(--empty-table-description-font-size);
  line-height: var(--empty-table-description-line-height);
  color: var(--empty-table-description-fg);
}