@citolab/qti-components 6.9.1-beta.32 → 6.9.1-beta.33
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/dist/item.css +8 -1
- package/package.json +1 -1
package/dist/item.css
CHANGED
|
@@ -1772,6 +1772,8 @@ https://www.imsglobal.org/spec/qti/v3p0/impl#h.e0onr51nghyl
|
|
|
1772
1772
|
text-orientation: upright;
|
|
1773
1773
|
}
|
|
1774
1774
|
|
|
1775
|
+
/* stylelint-disable number-max-precision */
|
|
1776
|
+
|
|
1775
1777
|
@layer qti-base {
|
|
1776
1778
|
.qti-layout-row {
|
|
1777
1779
|
display: flex;
|
|
@@ -1780,10 +1782,15 @@ https://www.imsglobal.org/spec/qti/v3p0/impl#h.e0onr51nghyl
|
|
|
1780
1782
|
gap: 2.1276595745%;
|
|
1781
1783
|
}
|
|
1782
1784
|
|
|
1783
|
-
.qti-layout-row [class*='qti-layout-col'] {
|
|
1785
|
+
.qti-layout-row [class*='qti-layout-col']:not(:empty) {
|
|
1784
1786
|
box-sizing: border-box;
|
|
1785
1787
|
}
|
|
1786
1788
|
|
|
1789
|
+
.qti-layout-row [class*='qti-layout-col']:empty {
|
|
1790
|
+
width: 0;
|
|
1791
|
+
overflow: hidden; /* to fully collapse if there’s padding or borders */
|
|
1792
|
+
}
|
|
1793
|
+
|
|
1787
1794
|
.qti-layout-col1 {
|
|
1788
1795
|
width: 6.3829787234%;
|
|
1789
1796
|
}
|