feat: add text alignment options to toolbar with corresponding styles and commands
All checks were successful
CI - Build and Push / Build and Push Docker Image (push) Successful in 17s

This commit is contained in:
2025-10-22 17:48:42 +08:00
parent 79fe02e307
commit d4713fd69e
4 changed files with 92 additions and 1 deletions

View File

@@ -334,3 +334,20 @@
left: -6px;
cursor: nw-resize;
}
/* Text Alignment */
.editor-text-left {
text-align: left;
}
.editor-text-center {
text-align: center;
}
.editor-text-right {
text-align: right;
}
.editor-text-justify {
text-align: justify;
}