@mp-lb/mdkit 0.2.0 → 0.2.1

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/styles.css +20 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mp-lb/mdkit",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",
package/src/styles.css CHANGED
@@ -142,6 +142,26 @@
142
142
  flex: 1 1 auto;
143
143
  }
144
144
 
145
+ .mp-lb-mdkit-markdown-view.mp-lb-mdkit-markdown-editor-fill-height
146
+ .mp-lb-mdkit-editor-shell {
147
+ height: auto;
148
+ min-height: 100%;
149
+ overflow: visible;
150
+ }
151
+
152
+ .mp-lb-mdkit-markdown-view.mp-lb-mdkit-markdown-editor-fill-height
153
+ .mp-lb-mdkit-editor-surface {
154
+ overflow: visible;
155
+ }
156
+
157
+ .mp-lb-mdkit-markdown-view.mp-lb-mdkit-markdown-editor-fill-height
158
+ .mp-lb-mdkit-view-content {
159
+ display: block;
160
+ height: auto;
161
+ min-height: 100%;
162
+ flex: 0 0 auto;
163
+ }
164
+
145
165
  .mp-lb-mdkit-tiptap > * + * {
146
166
  margin-top: var(--mp-lb-mdkit-block-gap);
147
167
  }