Make footer transparent

This commit is contained in:
Max Wofford
2025-02-17 11:41:21 -05:00
parent 73a8b87441
commit 023f9da438
2 changed files with 18 additions and 1 deletions

View File

@@ -21,4 +21,21 @@
background-color: #e8f5e9;
color: #2e7d32;
border: 1px solid #c8e6c9;
}
footer {
position: fixed;
bottom: 0;
width: 100%;
padding: 10px;
background-color: rgba(245, 245, 245, 0.8);
text-align: center;
font-size: 12px;
color: #999;
transition: all 0.2s ease;
}
footer:hover {
background-color: #f5f5f5;
color: #333;
}

View File

@@ -43,7 +43,7 @@
<%= yield %>
<footer style="position: fixed; bottom: 0; width: 100%; padding: 10px; background-color: #f5f5f5; text-align: center; font-size: 12px;">
<footer>
Build <%= Rails.application.config.git_version %> from <%= time_ago_in_words(Rails.application.config.server_start_time) %> ago.
<%= Heartbeat.cached_recent_count %> heartbeats in the last 24 hours.
</footer>