// ============================================================================
// :: Main action
// ============================================================================
/**
 * Small component that represents the main action in the tabbar on mobile.
 */

// ============================================================================
// :: Root
// ============================================================================
.a-main-action {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 7rem;
  height: 7rem;
  padding: 0;

  text-decoration: none;

  border: none;
  border-radius: $border-radius-round;
  background-color: $secondary-color-base;
  color: $text-color-white;

  outline-offset: 0.5rem;

  cursor: pointer;

  &::before {
    font-size: 2.5rem;
  }
}
