frontend/sass/shortcodes/note.scss
.note {
display: flex;
flex-direction: column;
border-left: 4px solid var(--secondary-color);
background-color: var(--bg-1);
.header {
background-color: var(--bg-2);
.title {
margin: 0.5rem;
font-weight: 600;
color: var(--text-0);
h1 {
color: var(--secondary-color);
&::before {
content: none;
}
}
}
}
.content {
color: var(--text-0);
p {
margin: 0.5em 0;
}
p:first-child {
margin-top: 0;
}
p:last-child {
margin-bottom: 0;
}
}
}