Untitled

 avatar
unknown
plain_text
a month ago
518 B
4
Indexable
.color-options {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.color-swatch {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
  cursor: pointer;
}

.color-swatch input:checked + .swatch {
  outline: 2px solid black;
  transform: scale(1.1);
}

.swatch {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-bottom: 4px;
  transition: transform 0.2s ease;
  border: 1px solid #ccc;
}

.label {
  margin-top: 2px;
}
Editor is loading...
Leave a Comment