@thangph2146/nextjs-editor 1.0.3 → 1.0.5
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 +181 -2
- package/dist/index.cjs +38 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +38 -0
- package/dist/index.js.map +1 -1
- package/dist/styles.css +5 -1
- package/package.json +1 -1
package/dist/styles.css
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
/* nextjs-editor
|
|
1
|
+
/* Dùng @layer nextjs-editor để app có thể đặt SCSS/CSS trong layer khác và tránh ghi đè editor. Xem README. */
|
|
2
|
+
@layer nextjs-editor {
|
|
3
|
+
/* nextjs-editor: theme + scoped utilities */
|
|
2
4
|
|
|
3
5
|
.EditorTheme__code {
|
|
4
6
|
background-color: transparent;
|
|
@@ -4274,3 +4276,5 @@ div.border.border-dashed .editor-image img {
|
|
|
4274
4276
|
}
|
|
4275
4277
|
}
|
|
4276
4278
|
}
|
|
4279
|
+
|
|
4280
|
+
}
|