From 439bc7582db40b538b9fc2bb53ae755a7c897b93 Mon Sep 17 00:00:00 2001 From: Kwangjin Lee <k.lee-5@student.tudelft.nl> Date: Mon, 2 Sep 2024 12:26:37 +0200 Subject: [PATCH] Update 2 files - /_includes/footer_custom.html - /_sass/custom/custom.scss --- _includes/footer_custom.html | 4 ++-- _sass/custom/custom.scss | 15 +++++++++++++++ 2 files changed, 17 insertions(+), 2 deletions(-) diff --git a/_includes/footer_custom.html b/_includes/footer_custom.html index 014d664..fd43c34 100644 --- a/_includes/footer_custom.html +++ b/_includes/footer_custom.html @@ -1,5 +1,5 @@ -<div class="footer-logo"> - <img src="{{ site.footer_logo | relative_url }}" alt="Footer Logo" style="height: 60px; width: auto;"> +<div class="footer-logo-container"> + <div class="footer-logo"></div> </div> <div> The MUDE Team © 2024 <a rel="license" href="http://creativecommons.org/licenses/by/4.0/">CC BY 4.0</a> diff --git a/_sass/custom/custom.scss b/_sass/custom/custom.scss index 4f6799f..063401c 100644 --- a/_sass/custom/custom.scss +++ b/_sass/custom/custom.scss @@ -152,4 +152,19 @@ $hyperlink-color: #0076C2; font-size: 1.1rem; // Increase font size padding: 0.5rem 0.75rem; // Add some padding for better clickability } +} + +.footer-logo-container { + display: flex; + justify-content: center; + margin-bottom: 1rem; +} + +.footer-logo { + width: 150px; // Adjust this to your desired width + height: 60px; // Adjust this to your desired height + background-image: url('#{$baseurl}/assets/logo/TUDelft Logo.png'); + background-size: contain; + background-repeat: no-repeat; + background-position: center; } \ No newline at end of file -- GitLab