Add .member hover style + NavRow & parse fixes

This commit is contained in:
venashial
2022-06-30 13:17:07 -07:00
parent cb3efb1c1d
commit 3c604db234
3 changed files with 11 additions and 1 deletions

View File

@@ -46,7 +46,7 @@
const indicator = {
left: 0,
right: 0,
top: 0,
top: 22,
direction: 'right',
}

View File

@@ -2,9 +2,18 @@
display: flex;
gap: 1rem;
border-radius: var(--rounded-sm);
padding: 0.5rem;
transition: background-color 0.1s ease-in-out;
&:hover {
background-color: var(--color-button-bg);
}
&__info {
display: flex;
flex-direction: column;
margin-right: 0.5rem;
&__link {
font-weight: var(--font-weight-medium);

View File

@@ -50,6 +50,7 @@ function sanitize(html: string): string {
span: ['class'],
input: ['type', 'checked', 'disabled'],
font: ['color'],
details: ['open'],
},
allowedClasses: {},
allowedSchemes: ['http', 'https', 'mailto'],