Circle Arrow
Shapes · .btn-circle-arrow
Text
Class name
Color hue
Radius · n/a
Size
.btn-circle-arrow {
display: inline-flex;
align-items: center;
justify-content: center;
width: 56px;
height: 56px;
border: none;
border-radius: 50%;
background: #0ea5e9;
color: #ffffff;
font-family: inherit;
font-size: 22px;
cursor: pointer;
box-shadow: 0 4px 14px rgba(14, 165, 233, 0.45);
transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn-circle-arrow:hover {
transform: scale(1.1);
box-shadow: 0 6px 20px rgba(14, 165, 233, 0.6);
}
.btn-circle-arrow:active {
transform: scale(0.94);
}