Skip to content

Commit

Permalink
💎 decrease pj generator logo size
Browse files Browse the repository at this point in the history
  • Loading branch information
PitButtchereit committed May 24, 2024
1 parent c521198 commit e08f78f
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

<body class="main_body">
<div class="selection_container">
<img src="{% static '/tracex/img/patient_journey_generator_logo.png' %}" alt="Patient Journey Generator Logo" class="patient_journey_generator_logo not_visible">
<img src="{% static '/tracex/img/patient_journey_generator_logo.png' %}" alt="Patient Journey Generator Logo" class="patient_journey_generator_logo">
<h2>Generated Journey</h2>
<p>{{ generated_journey }}</p>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<body class="main_body">
<div class="selection_container">
{% if generated_journey %}
<img src="{% static '/tracex/img/patient_journey_generator_logo.png' %}" alt="Patient Journey Generator Logo" class="patient_journey_generator_logo not_visible">
<img src="{% static '/tracex/img/patient_journey_generator_logo.png' %}" alt="Patient Journey Generator Logo" class="patient_journey_generator_logo">
<h2>Generated Journey</h2>
<p>{{ generated_journey }}</p>

Expand Down
11 changes: 10 additions & 1 deletion tracex_project/tracex/static/tracex/css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -318,7 +318,7 @@ form #id_name {
display: block;
}

.landing_page_logo, .test_environment_logo, .metrics_dashboard_logo, .database_results_logo, .extraction_logo, .patient_journey_generator_logo {
.landing_page_logo, .test_environment_logo, .metrics_dashboard_logo, .database_results_logo, .extraction_logo {
width: 300px;
height: auto;
display: block;
Expand All @@ -327,6 +327,15 @@ form #id_name {
margin-bottom: 5%;
}

.patient_journey_generator_logo {
width: 200px;
height: auto;
display: block;
margin: 0 auto;
margin-top: 5%;
margin-bottom: 5%;
}

.error_logo {
width: 300px;
height: auto;
Expand Down

0 comments on commit e08f78f

Please sign in to comment.