26 lines
509 B
CSS
26 lines
509 B
CSS
.button {
|
|
display: flex;
|
|
height: 36px;
|
|
padding: 9px 12px;
|
|
justify-content: center;
|
|
align-items: center;
|
|
gap: 8px;
|
|
border-radius: 6px;
|
|
border: 0.5px solid #4e537e;
|
|
cursor: pointer;
|
|
color: #d2d3e1;
|
|
font-size: 16px;
|
|
|
|
font-style: normal;
|
|
font-weight: 500;
|
|
line-height: normal;
|
|
letter-spacing: 0.16px;
|
|
cursor: pointer;
|
|
background: transparent;
|
|
}
|
|
.button:hover {
|
|
border-radius: 6px;
|
|
border: 1px solid #8e98e7;
|
|
background: linear-gradient(180deg, #8e98e6 0%, #4d537e 100%);
|
|
}
|