- 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
37 lines
452 B
SCSS
37 lines
452 B
SCSS
// stylelint-disable selector-no-qualifying-type
|
|
|
|
.fade {
|
|
opacity: 0;
|
|
@include transition($transition-fade);
|
|
|
|
&.show {
|
|
opacity: 1;
|
|
}
|
|
}
|
|
|
|
.collapse {
|
|
display: none;
|
|
&.show {
|
|
display: block;
|
|
}
|
|
}
|
|
|
|
tr {
|
|
&.collapse.show {
|
|
display: table-row;
|
|
}
|
|
}
|
|
|
|
tbody {
|
|
&.collapse.show {
|
|
display: table-row-group;
|
|
}
|
|
}
|
|
|
|
.collapsing {
|
|
position: relative;
|
|
height: 0;
|
|
overflow: hidden;
|
|
@include transition($transition-collapse);
|
|
}
|