@import './theme-default.less';

:root {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  color: var(--amh-color-text);
  font-size: var(--amh-font-size-main);
  font-family: var(--amh-font-family);
}

a,
button {
  cursor: pointer;
}

a {
  color: var(--amh-color-primary);
  transition: opacity ease-in-out 0.2s;
  &:active {
    opacity: 0.8;
  }
}

.amh-plain-anchor {
  color: unset;
  transition: none;
  &:active {
    opacity: unset;
  }
}

body.amh-overflow-hidden {
  overflow: hidden !important;
}

div.amh-px-tester {
  --size: 1;
  height: calc(var(--size) / 2 * 2px);
  width: 0;
  position: fixed;
  right: -100vw;
  bottom: -100vh;
  user-select: none;
  pointer-events: none;
}
