@lumir-company/editor 0.4.15 → 0.4.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +50 -0
- package/dist/index.d.mts +81 -1
- package/dist/index.d.ts +81 -1
- package/dist/index.js +869 -535
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +784 -450
- package/dist/index.mjs.map +1 -1
- package/dist/style.css +17 -0
- package/package.json +1 -1
package/dist/style.css
CHANGED
|
@@ -542,6 +542,23 @@
|
|
|
542
542
|
color: #3b82f6 !important;
|
|
543
543
|
}
|
|
544
544
|
|
|
545
|
+
/* Font Size Dropdown Button (글자 크기) */
|
|
546
|
+
.lumir-font-size-btn {
|
|
547
|
+
min-width: 52px;
|
|
548
|
+
max-width: 72px;
|
|
549
|
+
}
|
|
550
|
+
|
|
551
|
+
.lumir-font-size-label {
|
|
552
|
+
flex: 1;
|
|
553
|
+
text-align: center;
|
|
554
|
+
}
|
|
555
|
+
|
|
556
|
+
.lumir-font-size-menu {
|
|
557
|
+
min-width: 96px;
|
|
558
|
+
max-height: 280px;
|
|
559
|
+
overflow-y: auto;
|
|
560
|
+
}
|
|
561
|
+
|
|
545
562
|
/* Block Type Dropdown Button */
|
|
546
563
|
.lumir-block-type-btn {
|
|
547
564
|
min-width: 110px;
|
package/package.json
CHANGED