react-color-picker-wheel
Version:
Color picker component for React.js using color wheel
27 lines (23 loc) • 450 B
CSS
.outerContainer{
display: flex;
flex-direction: column;
background-color: white;
}
.pickedColorContainer{
flex: 1;
}
.pickedColor{
border: 1px solid black;
display: flex;
align-items: center;
justify-content: center;
border-radius: 500px;
height: calc(88% - 2px);
margin: 2% 8.33% 0 8.33%;
background-color: red;
}
.hexValue{
font-family: serif;
font-weight: bold;
transition: color 0.5s;
}