@punch-in/strapi-admin 1.2.6 → 1.2.7
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.
|
@@ -142,20 +142,20 @@ const GlobalStyle = createGlobalStyle`
|
|
|
142
142
|
}
|
|
143
143
|
|
|
144
144
|
::-webkit-scrollbar-track {
|
|
145
|
-
background-color:
|
|
145
|
+
background-color: transparent;
|
|
146
146
|
}
|
|
147
147
|
|
|
148
148
|
::-webkit-scrollbar-track:hover {
|
|
149
|
-
background-color:
|
|
149
|
+
background-color: transparent;
|
|
150
150
|
}
|
|
151
151
|
|
|
152
152
|
::-webkit-scrollbar-thumb {
|
|
153
|
-
background-color: #
|
|
153
|
+
background-color: #c0c4cc;
|
|
154
154
|
border-radius: 0.5rem;
|
|
155
155
|
}
|
|
156
156
|
|
|
157
157
|
::-webkit-scrollbar-thumb:hover {
|
|
158
|
-
background-color: #
|
|
158
|
+
background-color: #a6acb8;
|
|
159
159
|
}
|
|
160
160
|
|
|
161
161
|
::-webkit-scrollbar-button {
|
|
@@ -165,7 +165,7 @@ const GlobalStyle = createGlobalStyle`
|
|
|
165
165
|
/* firefox scrollbar */
|
|
166
166
|
/* stylelint-disable */
|
|
167
167
|
* {
|
|
168
|
-
scrollbar-color: #
|
|
168
|
+
scrollbar-color: #c0c4cc transparent;
|
|
169
169
|
scrollbar-width: thin;
|
|
170
170
|
}
|
|
171
171
|
/* stylelint-enable */
|
|
@@ -54,7 +54,7 @@
|
|
|
54
54
|
"HomePage.community": "Join Punch-in Community",
|
|
55
55
|
"HomePage.greetings": "Hi {name}!",
|
|
56
56
|
"HomePage.helmet.title": "Homepage",
|
|
57
|
-
"HomePage.punchIn.title": "
|
|
57
|
+
"HomePage.punchIn.title": "Attendance recorded",
|
|
58
58
|
"HomePage.punchIn.subtitle": "{count} {count, plural, one {person} other {people}} clocked in · grouped by site",
|
|
59
59
|
"HomePage.punchIn.loading": "Loading today's punch-ins…",
|
|
60
60
|
"HomePage.punchIn.empty": "No one has punched in yet today.",
|
package/package.json
CHANGED