feat: добавлена современная страница деталей услуги с портфолио и отзывами

This commit is contained in:
2025-11-24 09:05:48 +09:00
parent faa02b79c0
commit ee3a1bf846
20 changed files with 1260 additions and 53 deletions

View File

@@ -1 +1,23 @@
@import url('https://cdnjs.cloudflare.com/ajax/libs/bootstrap/5.1.3/css/bootstrap.min.css');
/* Убедимся, что все модальные окна скрыты по умолчанию */
.modal {
display: none !important;
position: fixed;
z-index: 9999;
pointer-events: none;
}
.modal.show {
display: block !important;
pointer-events: auto;
}
/* Убедимся, что body не заблокирован */
body {
overflow: auto !important;
}
body.modal-open {
overflow: hidden !important;
}