@doenet/doenetml-iframe 0.7.23-dev.470 → 0.7.23-dev.475
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/index.js +129 -24
- package/index.js.map +1 -1
- package/package.json +1 -1
- package/style.css +7 -0
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@doenet/doenetml-iframe",
|
|
3
3
|
"type": "module",
|
|
4
4
|
"description": "A renderer for DoenetML contained in an iframe",
|
|
5
|
-
"version": "0.7.23-dev.
|
|
5
|
+
"version": "0.7.23-dev.475",
|
|
6
6
|
"license": "AGPL-3.0-or-later",
|
|
7
7
|
"homepage": "https://github.com/Doenet/DoenetML#readme",
|
|
8
8
|
"repository": {
|
package/style.css
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
.fixed {
|
|
2
|
+
position: fixed;
|
|
3
|
+
}
|
|
4
|
+
|
|
1
5
|
.inline {
|
|
2
6
|
display: inline;
|
|
3
7
|
}
|
|
@@ -317,6 +321,9 @@
|
|
|
317
321
|
Tailwind base is purposely not included because we want all styles to be prefixed. We manually copy in whatever is needed from tailwind preflight.
|
|
318
322
|
@tailwind base;
|
|
319
323
|
*/
|
|
324
|
+
.fixed {
|
|
325
|
+
position: fixed;
|
|
326
|
+
}
|
|
320
327
|
.inline {
|
|
321
328
|
display: inline;
|
|
322
329
|
}
|