@blinkk/root-cms 1.0.0-rc.1 → 1.0.0-rc.3
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/app.js +3 -3
- package/dist/cli.js +8 -11
- package/dist/client.d.ts +1 -15
- package/dist/client.js +1 -42
- package/dist/core.d.ts +11 -2
- package/dist/core.js +26 -42
- package/dist/functions.js +5 -8
- package/dist/plugin.js +9 -12
- package/dist/ui/signin.css +37 -58
- package/dist/ui/signin.js +657 -688
- package/dist/ui/ui.css +4 -5
- package/dist/ui/ui.js +1334 -1326
- package/package.json +4 -4
package/dist/ui/ui.css
CHANGED
|
@@ -548,6 +548,10 @@
|
|
|
548
548
|
top: calc(50% - 10px);
|
|
549
549
|
right: 12px;
|
|
550
550
|
}
|
|
551
|
+
.CollectionPage__main {
|
|
552
|
+
max-height: calc(100% - 48px);
|
|
553
|
+
overflow: auto;
|
|
554
|
+
}
|
|
551
555
|
.CollectionPage__main__unselected {
|
|
552
556
|
padding: 12px;
|
|
553
557
|
display: flex;
|
|
@@ -561,11 +565,6 @@
|
|
|
561
565
|
font-size: 14px;
|
|
562
566
|
font-weight: 500;
|
|
563
567
|
}
|
|
564
|
-
.CollectionPage__collection {
|
|
565
|
-
height: 100%;
|
|
566
|
-
max-height: calc(100% - 48px);
|
|
567
|
-
overflow: auto;
|
|
568
|
-
}
|
|
569
568
|
.CollectionPage__collection__header {
|
|
570
569
|
padding: 12px;
|
|
571
570
|
display: none;
|