2023-07-26 23:12:43 +00:00

52 lines
869 B
Plaintext
Executable File

.syncButton {
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
background-color: var(--background-color-primary);
padding: 10px;
border-radius: 12px;
.syncButton_info {
display: flex;
flex-direction: row;
align-items: center;
img {
width: 40px;
height: 40px;
object-fit: cover;
border-radius: 12px;
margin-right: 10px;
}
p {
font-size: 0.8rem;
font-weight: 500;
line-height: 1.5;
margin: 0;
}
}
.syncButton_actions {
display: flex;
align-items: center;
.ant-btn {
margin-left: 10px;
&:first-child {
margin-left: 0;
}
}
}
}