Files
erv-ticket-dev/libs/bootstrap/scss/mixins/_box-shadow.scss
Fedor 2c516362df feat: Secure SMS verification with Redis (Predis)
- Added Predis library for Redis connection (no PHP extension required)
- Server-side SMS code generation and storage in Redis
- Rate limiting and brute-force protection
- Integration with n8n webhook for SMS sending
- Environment variables moved to .env file
- Fixed policy verification endpoint
- Added file-based fallback if Redis unavailable
2026-01-15 15:40:13 +03:00

6 lines
87 B
SCSS

@mixin box-shadow($shadow...) {
@if $enable-shadows {
box-shadow: $shadow;
}
}