oliverdavies.uk/resources/css/components/note.css

16 lines
216 B
CSS
Raw Normal View History

2019-03-09 08:15:13 +00:00
.note {
2019-03-21 09:38:09 +00:00
@apply bg-blue-200 border-blue-600 border-l-4 mb-4 p-4 rounded;
2019-03-09 08:15:13 +00:00
> *:not(:first-child) {
@apply mt-6
}
p a {
@apply text-black underline;
&:hover {
@apply no-underline
}
}
}