We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f4c5c06 + 3071211 commit b03f8c6Copy full SHA for b03f8c6
2 files changed
src/backend/src/services/notifications.services.ts
@@ -265,6 +265,13 @@ export default class NotificationsService {
265
type: Reimbursement_Status_Type.SABO_SUBMITTED
266
}
267
268
+ },
269
+ {
270
+ reimbursementStatuses: {
271
+ none: {
272
+ type: Reimbursement_Status_Type.DENIED
273
+ }
274
275
276
]
277
},
src/frontend/src/pages/CreditsPage/CreditsPage.tsx
@@ -301,6 +301,20 @@ const CreditsPage: React.FC = () => {
301
302
303
{ name: 'Saul Manzanares', color: '#AF34FA' }
304
+ { name: 'Richard Feng', color: '#FFFF', sx: { textShadow: '0 0 2px rgba(0,26,255), 0 0 5px rgba(255,255,255)' } },
305
306
+ name: 'Samuel Shrestha',
307
+ color: '#be0000',
308
+ sx: {
309
+ textShadow: '0 0 6px rgba(190, 0, 0, 0.9), 0 0 14px rgba(190, 0, 0, 0.6)',
310
+ animation: 'sam-glow 2.6s ease-in-out infinite',
311
+ '@keyframes sam-glow': {
312
+ '0%': { textShadow: '0 0 4px rgba(190, 0, 0, 0.7), 0 0 10px rgba(190, 0, 0, 0.4)' },
313
+ '50%': { textShadow: '0 0 10px rgba(190, 0, 0, 1), 0 0 22px rgba(190, 0, 0, 0.95)' },
314
+ '100%': { textShadow: '0 0 4px rgba(190, 0, 0, 0.7), 0 0 10px rgba(190, 0, 0, 0.4)' }
315
316
317
318
];
319
320
const snark = ['Add your name!', "Shouldn't you do it yourself?", 'Seriously', 'go', 'do', 'it'];
0 commit comments