This commit is contained in:
2025-06-28 20:38:37 +02:00
parent e444d0d7ae
commit ce6037350c
3 changed files with 93 additions and 5 deletions

View File

@@ -443,4 +443,16 @@ select:focus {
.prose a {
word-break: break-word;
}
}
}
.custom-tag {
padding: 1rem;
border-radius: 6px;
margin: 1rem 0;
font-weight: 500;
}
.custom-tag.warning { background: #fff3cd; border: 1px solid #ffeaa7; color: #856404; }
.custom-tag.info { background: #d1ecf1; border: 1px solid #bee5eb; color: #0c5460; }
.custom-tag.success { background: #d4edda; border: 1px solid #c3e6cb; color: #155724; }
.custom-tag.error { background: #f8d7da; border: 1px solid #f5c6cb; color: #721c24; }
.custom-tag.mytag { background: #e3e3ff; border: 1px solid #b3b3ff; color: #333366; }