ttrpg-tools/src/styles.css

30 lines
503 B
CSS
Raw Normal View History

2026-02-26 00:17:23 +08:00
@import "tailwindcss";
2026-02-28 13:58:51 +08:00
@plugin "@tailwindcss/typography";
.markdown-alert {
@apply px-4 rounded mb-4 border;
}
.markdown-alert-title{
@apply hidden;
}
.markdown-alert-note {
@apply bg-blue-50 border-blue-500;
}
.markdown-alert-tip {
@apply bg-green-50 border-green-500;
}
.markdown-alert-important {
@apply bg-red-50 border-red-500;
}
.markdown-alert-warning {
@apply bg-yellow-50 border-yellow-500;
}
.markdown-alert-caution {
@apply bg-orange-50 border-orange-500;
}