mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-12 12:04:16 +00:00
52 lines
869 B
Plaintext
Executable File
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;
|
|
}
|
|
}
|
|
}
|
|
} |