16 lines
216 B
CSS
16 lines
216 B
CSS
|
.note {
|
||
|
@apply bg-blue-lighter border-blue border-l-4 mb-4 p-4 rounded;
|
||
|
|
||
|
> *:not(:first-child) {
|
||
|
@apply mt-6
|
||
|
}
|
||
|
|
||
|
p a {
|
||
|
@apply text-black underline;
|
||
|
|
||
|
&:hover {
|
||
|
@apply no-underline
|
||
|
}
|
||
|
}
|
||
|
}
|