Skip to content

Commit

Permalink
UI
Browse files Browse the repository at this point in the history
  • Loading branch information
PavlosIsaris committed Nov 12, 2024
1 parent 4a7e36d commit 3db3563
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions resources/assets/sass/project/landing-page.scss
Original file line number Diff line number Diff line change
Expand Up @@ -1433,19 +1433,19 @@ footer {
background-position: center;
}

#questionnaire .content-container::before {
#questionnaire::before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
top: 10%;
left: 10%;
width: 80%;
height: 80%;
background-color: rgba(255, 255, 255, 0.70);
backdrop-filter: blur(10px); /* Blur effect */
z-index: 1;
}

#questionnaire .content-container .content {
#questionnaire .content-container {
position: relative;
z-index: 2; /* Ensure content is above the overlay */
}
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ class="align-items-center mx-0"
style="background-image: url('{{ asset($viewModel->project->lp_questionnaire_img_path) }}')">
@if ($viewModel->questionnaire)
<div class="text-center content-container">
<div class="content">
<div class="content w-100 h-100">
<h3 class="project-section-title">
{{ $viewModel->userResponse? __("questionnaire.already_participated"): $viewModel->questionnaire->fieldsTranslation->title }}
</h3>
Expand Down

0 comments on commit 3db3563

Please sign in to comment.