Iceshrimp.NET/Iceshrimp.Frontend/Components/Note/NoteFooter.razor.css
2025-03-24 13:17:34 +01:00

59 lines
No EOL
864 B
CSS

.note-footer {
margin-top: 0.5em;
}
.reactions {
display: flex;
align-items: center;
flex-wrap: wrap;
gap: 0.5rem;
margin-bottom: 0.5em;
}
.indent {
padding-left: 0.75em;
}
.btn {
display: inline-flex;
align-items: center;
min-width: 2.5em;
height: 2em;
padding: 0.75em;
background-color: var(--foreground-color);
border: 0.1rem solid var(--foreground-color);
width: fit-content;
}
.btn:hover {
transition: 250ms;
border-color: var(--notice-color);
background-color: var(--hover-color);
}
.like-count {
margin-left: 0.5em;
}
.reply-count {
margin-left: 0.5em;
}
.renote-count {
margin-left: 0.5em;
}
.positioned {
position: relative;
top: 0;
}
.disabled {
cursor: not-allowed;
}
::deep {
.faded {
cursor: not-allowed;
opacity: 50%;
}
}