/*
 * Empty room and nothing else — no ground, no border, and no z-index: an empty
 * `<div>` intercepts no pointer event, which is what the old `zIndex: -1` was
 * guarding against on a platform where it did.
 */
@layer theme, base, lotics, components, utilities;
@layer lotics.tokens, lotics.reset, lotics.components;

@layer lotics.components {
  .lotics-spacer {
    flex-shrink: 0;
  }

  .lotics-spacer[data-fill] {
    flex: 1;
    min-width: 0;
  }

  .lotics-spacer[data-axis="vertical"] {
    height: var(--lotics-spacer-size);
  }

  .lotics-spacer[data-axis="horizontal"] {
    width: var(--lotics-spacer-size);
  }
}
