JSFiddle - React, Tailwind, and code Playground

by kirito0709

HTML

<div class="check-color">
<div class="row">
  <div class="col-xs-12">

    <div class="color-for-tent">
      <label class="tent-color">
        <input id="t-color-1" name="tent-color" value="1" type="radio" checked />
        <div data-title="Серый"><i>●</i></div>
      </label>
      <label class="tent-color">
        <input id="t-color-2" name="tent-color" value="2" type="radio" />
        <div data-title="Зеленый"><i>●</i></div>
      </label>
      <label class="tent-color">
        <input id="t-color-3" name="tent-color" value="3" type="radio" />
        <div data-title="Синий"><i>●</i></div>
      </label>
      <label class="tent-color">
        <input id="t-color-4" name="tent-color" value="4" type="radio" />
        <div data-title="Бежевый"><i>●</i></div>
      </label>
    </div>
  </div>
</div>
</div>

CSS

/* цвет тента */
label.tent-color {

}
label.tent-color input {
  display: none;
}

label.tent-color input+div {
  width: 20px;
  height: 20px;
  text-align: center;
  border: 1px solid #000;
  box-sizing: border-box;
  margin:5px;
}
label.tent-color input+div i {
	display: none;
	line-height: 20px;
	font-size:18px;
}
label.tent-color input:checked+div i {
	display: block;
	top: -2px;
	position: relative;
}
/* //цвет тента */