mirror of
https://github.com/ragestudio/comty.git
synced 2025-06-10 02:54:15 +00:00
69 lines
1.2 KiB
Plaintext
Executable File
69 lines
1.2 KiB
Plaintext
Executable File
@borderRadius: 12px;
|
|
|
|
.ant-result {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
}
|
|
|
|
.ant-result-icon {
|
|
background-color: var(--background-color-accent);
|
|
border-radius: @borderRadius;
|
|
width: fit-content;
|
|
padding: 20px;
|
|
|
|
svg {
|
|
margin: 0;
|
|
color: var(--background-color-contrast);
|
|
}
|
|
}
|
|
|
|
.ant-result-content {
|
|
background-color: var(--background-color-accent);
|
|
border-radius: @borderRadius;
|
|
|
|
h2 {
|
|
color: var(--background-color-contrast);
|
|
}
|
|
|
|
h3 {
|
|
color: var(--background-color-contrast);
|
|
font-weight: 100;
|
|
}
|
|
}
|
|
|
|
.followersList {
|
|
.follower {
|
|
display: inline-flex;
|
|
align-items: center;
|
|
|
|
width: 100%;
|
|
|
|
margin-bottom: 10px;
|
|
padding: 10px;
|
|
|
|
border-radius: 8px;
|
|
border: 1px solid var(--border-color);
|
|
|
|
cursor: pointer;
|
|
|
|
h2 {
|
|
margin: 0;
|
|
font-size: 22px;
|
|
line-height: 26px;
|
|
}
|
|
|
|
>div {
|
|
margin-right: 10px;
|
|
}
|
|
|
|
.names {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
}
|
|
|
|
.follower:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
} |