btracing 0.1.6

tracing logger interacting with notification
Documentation
/* Inter Font */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

#btracing-toast-template {
  display: none;
  visibility: hidden;
}

.btracing-toast {
  position: absolute;
  top: 10px;
  right: 0;
  padding-right: 10px;
  user-select: none;
  transition: transform 0.2s ease;
  z-index: 2147483647;
}

.btracing-toast .btracing-toast-inner {
  transition: right 0.2s ease-out;
  position: fixed;

  background-color: #181B20;
  color: #ffffff;
  font-family: "Inter", sans-serif;

  display: grid;
  grid-template-columns: auto auto;
  min-width: 280px;
  min-height: 92px;
  width: min-content;
  border-radius: 5px;

}

.btracing-toast:hover {
  cursor: pointer;
  transform: translateX(-5px);
}

.btracing-toast .btracing-toast-level-bar-container {
  height: 100%;
  width: 6px;
}

.btracing-toast .btracing-toast-level-bar-container .btracing-toast-level-bar {
  width: 100%;
  height: 100%;
  border-radius: 5px 0px 0px 5px;
}

.btracing-toast .btracing-toast-content {
  padding: 13px;
}

.btracing-toast .btracing-toast-header {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: end;
  margin-bottom: 13px;
  gap: 1em;
}

.btracing-toast .btracing-toast-header>svg {
  height: 22px;
  margin-right: 5px;
}

.btracing-toast .btracing-toast-header .btracing-toast-header-text {
  font-size: 16px;
  font-weight: 700;
  padding: 0;
  margin: 0;
}

.btracing-toast .btracing-toast-msg {
  font-size: 14px;
  font-weight: 400;
  padding: 0;
  margin: 0;
}

.btracing-toast-level-bar.info {
  background-color: #428EFF;
}

.btracing-toast-level-bar.success {
  background-color: #42FF65;
}

.btracing-toast-level-bar.error {
  background-color: #FF4242;
}