.item-list {
  display: flex;
  flex-wrap: wrap;
}

.item-card a img:hover {
  opacity: 0.5;
}

.item-card {
  width: 100px;
  flex-shrink: 0;
  margin-bottom: 10px;
}

.item-card img {
  border-radius: 12px;
}

.item-card:not(:last-child) {
  margin-right: 10px;
}

/* Copy pattern */
.can-copy {
  display: flex;
}

.can-copy input, .can-copy button {
  display: inline-block;
}

.can-copy input {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.can-copy button {
  flex: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  font-family: 'Material Icons';

  /* match height with input */
  height: calc(1rem * var(--line-height) + var(--form-element-spacing-vertical) * 2 + var(--border-width) * 2);
}

.t-toast {
  border-radius: var(--border-radius);
  box-shadow: 0;
}

.t-toast.t-green {
  background-color: var(--primary);
}