This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| :root { | |
| --ouset-cube-border-size: 10px; | |
| --ouset-cube-border-color: rgb(220 38 38); | |
| --inset-shadow-color-primary: rgba(0 0 0 / 0.3); | |
| --inset-shadow-color-secondary: rgba(0 0 0 / 0.1); | |
| --inset-margin: 30px; | |
| --block-size: 200px; | |
| --shape-size: 150px; | |
| } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| const sessions = new Map(); | |
| const chatHandler = async (ctx) => { | |
| try { | |
| await ctx.answerCallbackQuery(); | |
| } catch {} | |
| const channels = process.env.TG_CHANNEL.split(','); | |
| let notJoinedChannels = []; | |
| for (let channel of channels) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| ################################# | |
| # Animations # | |
| ################################# | |
| animations = true; | |
| # Global animation parameters | |
| animation-stiffness-in-tag = 150; # Smoother opening | |
| animation-stiffness-tag-change = 80; # Smoother tag transitions | |
| animation-window-mass = 0.4; # Slightly heavier for more "weighty" feel |
OlderNewer