design-system 0.0.1

Design System for Open Marketplace Applications
Documentation
& {
  position: absolute;
  z-index: 2;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px;
  border-radius: 5px;
  background-color: black;
  color: var(--white);
  font-size: 12px;
  transition: var(--transition-cubic);
  max-width: 200px;
  box-shadow: var(--box-shadow);
  display: flex;
  justify-content: center;
  align-items: center;
}

&:before,
&:after {
  content: '';
  position: absolute;
  top: -5px;
  left: 50%;
  height: 14px;
  width: 14px;
  border-radius: 2px;
  background-color: black;
  transform: translateX(-50%) rotate(45deg);
}

&:before {
  z-index: 1;
  box-shadow: var(--box-shadow);
}

&:after {
  z-index: 3;
}

span {
  text-align: center;
  font-weight: 400;
  white-space: pre;
}