- Implemented the initial version of the web interface. refactor: Begin Telegram bot refactoring - Started restructuring the bot’s code for better maintainability. chore: Migrate to Flask project structure - Reorganized the application to follow Flask's project structure. cleanup: Extensive code cleanup - Removed redundant code and improved readability. Signed-off-by: UdoChudo <stream@udochudo.ru>
24 lines
704 B
CSS
24 lines
704 B
CSS
/* Увеличение ширины колонки с регионами */
|
||
#region-list {
|
||
max-height: 600px; /* Устанавливаем максимальную высоту для вертикальной прокрутки */
|
||
overflow-y: auto;
|
||
}
|
||
|
||
#user-list {
|
||
max-height: 400px; /* Устанавливаем максимальную высоту для вертикальной прокрутки */
|
||
overflow-y: auto;
|
||
}
|
||
|
||
/* Стилизация заголовков и кнопок */
|
||
h3 {
|
||
margin-bottom: 20px;
|
||
}
|
||
|
||
#user-info {
|
||
margin-bottom: 20px;
|
||
}
|
||
|
||
.btn {
|
||
margin: 0 5px; /* Добавляем немного пространства между кнопками */
|
||
}
|