1
2024-02-11 12:15:18 -05:00

50 lines
695 B
SCSS

blockquote,
.text-note {
margin: 0;
padding: 0 1em;
margin-bottom: 1em;
border-left-width: 0.25em;
border-left-style: solid;
& > :first-child {
margin-top: 0;
}
& > :last-child {
margin-bottom: 0;
}
}
blockquote {
color: #57606a;
border-left-color: #d0d7de;
}
.text-note {
color: black;
.note-title {
margin-bottom: 0.5em;
}
&[data-type="info"] {
border-left-color: #0969da;
.note-title {
color: #0969da;
}
}
&[data-type="note"] {
border-left-color: #9a6700;
.note-title {
color: #9a6700;
}
}
&[data-type="warning"] {
border-left-color: #cf222e;
.note-title {
color: #cf222e;
}
}
}