23 lines
500 B
CSS
23 lines
500 B
CSS
@import "tailwindcss";
|
|
@plugin "@tailwindcss/typography";
|
|
|
|
/* @mention styling */
|
|
.mention {
|
|
color: var(--color-blue-600);
|
|
background-color: var(--color-blue-50);
|
|
padding: 0.125rem 0.25rem;
|
|
border-radius: 0.25rem;
|
|
font-weight: 500;
|
|
cursor: default;
|
|
position: relative;
|
|
}
|
|
.mention:hover {
|
|
background-color: var(--color-blue-100);
|
|
}
|
|
|
|
/* Task list checkbox styling */
|
|
.prose input[type="checkbox"] {
|
|
margin-right: 0.375rem;
|
|
accent-color: var(--color-blue-600);
|
|
}
|