@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: #ffffff;
145
+ background-color: transparent;
146
146
  }
147
147
 
148
148
  ::-webkit-scrollbar-track:hover {
149
- background-color: #ffffff;
149
+ background-color: transparent;
150
150
  }
151
151
 
152
152
  ::-webkit-scrollbar-thumb {
153
- background-color: #007eff;
153
+ background-color: #c0c4cc;
154
154
  border-radius: 0.5rem;
155
155
  }
156
156
 
157
157
  ::-webkit-scrollbar-thumb:hover {
158
- background-color: #007eff;
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: #ffffff #007eff;
168
+ scrollbar-color: #c0c4cc transparent;
169
169
  scrollbar-width: thin;
170
170
  }
171
171
  /* stylelint-enable */
@@ -329,6 +329,7 @@ const SiteNavBtn = styled.button`
329
329
  const PunchList = styled.div`
330
330
  max-height: 360px;
331
331
  overflow-y: auto;
332
+ padding-right: 10px;
332
333
  `;
333
334
 
334
335
  const PunchRow = styled.div`
@@ -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": "Punched in today",
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
@@ -139,5 +139,5 @@
139
139
  "develop:ce": "STRAPI_DISABLE_EE=true webpack-dev-server --config webpack.config.dev.js",
140
140
  "test": "echo \"no tests yet\""
141
141
  },
142
- "version": "1.2.6"
142
+ "version": "1.2.7"
143
143
  }