@7365admin1/layer-common 3.2.2-staging.88 → 3.2.2-staging.89
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.
|
@@ -643,12 +643,16 @@ onUnmounted(() => {
|
|
|
643
643
|
gap: 12px;
|
|
644
644
|
padding: 12px 0;
|
|
645
645
|
background: transparent;
|
|
646
|
+
/* The title, the 260px search and the invite button do not fit a phone on
|
|
647
|
+
one line, and without this the whole page scrolled sideways. */
|
|
648
|
+
flex-wrap: wrap;
|
|
646
649
|
}
|
|
647
650
|
.topbar-right {
|
|
648
651
|
margin-left: auto;
|
|
649
652
|
display: flex;
|
|
650
653
|
align-items: center;
|
|
651
654
|
gap: 12px;
|
|
655
|
+
flex-wrap: wrap;
|
|
652
656
|
}
|
|
653
657
|
.btn-invite {
|
|
654
658
|
background: var(--card);
|
|
@@ -667,6 +671,7 @@ onUnmounted(() => {
|
|
|
667
671
|
.search-wrap {
|
|
668
672
|
position: relative;
|
|
669
673
|
width: 260px;
|
|
674
|
+
max-width: 100%;
|
|
670
675
|
flex-shrink: 0;
|
|
671
676
|
}
|
|
672
677
|
.search-input {
|
|
@@ -709,7 +714,14 @@ onUnmounted(() => {
|
|
|
709
714
|
.filter-wrap {
|
|
710
715
|
display: flex;
|
|
711
716
|
gap: 10px;
|
|
712
|
-
flex-shrink: 0
|
|
717
|
+
/* Three filters do not fit a phone beside the search box. `flex-shrink: 0`
|
|
718
|
+
kept this row at its 463px content width, so it never wrapped and the
|
|
719
|
+
whole page scrolled sideways at 360. */
|
|
720
|
+
flex-wrap: wrap;
|
|
721
|
+
min-width: 0;
|
|
722
|
+
}
|
|
723
|
+
.filter-wrap > * {
|
|
724
|
+
max-width: 100%;
|
|
713
725
|
}
|
|
714
726
|
.filter-field {
|
|
715
727
|
position: relative;
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
<div class="d-flex mt-3 pb-5 pr-5">
|
|
39
39
|
<p class="mr-6 font-weight-medium flex-grow-1">
|
|
40
40
|
NFC / QR Code Pass
|
|
41
|
-
<span class="d-block text-caption
|
|
41
|
+
<span class="d-block text-caption screen-hint mt-1">
|
|
42
42
|
NFC Card Pass uses Near Field Communication (NFC) technology
|
|
43
43
|
to enable secure and convenient entry within ~4 cm proximity.
|
|
44
44
|
</span>
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
<div class="mt-5 pb-5">
|
|
60
60
|
<p class="font-weight-medium mb-1">
|
|
61
61
|
Access Door / Lift
|
|
62
|
-
<span class="d-block text-caption
|
|
62
|
+
<span class="d-block text-caption screen-hint mt-1">
|
|
63
63
|
Choose the access method(s) for door and lift control.
|
|
64
64
|
At least one method must be enabled.
|
|
65
65
|
</span>
|
|
@@ -190,7 +190,7 @@
|
|
|
190
190
|
<div class="d-flex mt-3 pb-5">
|
|
191
191
|
<p class="font-weight-medium flex-grow-1">
|
|
192
192
|
Upload Access Cards Template
|
|
193
|
-
<span class="d-block text-caption
|
|
193
|
+
<span class="d-block text-caption screen-hint mt-1">
|
|
194
194
|
<a
|
|
195
195
|
v-if="currentEntryPassSettings.template?.id"
|
|
196
196
|
href="#"
|