This commit is contained in:
broquemonsieur 2024-08-12 22:34:39 -07:00
parent e9e89a58f7
commit a9600c8c7c
2 changed files with 8 additions and 2 deletions

View File

@ -799,3 +799,9 @@ h1, h2, h3, h4, h5, p,
#download_widget { #download_widget {
width: 100%; width: 100%;
} }
/* 404 TV Box */
.error-page {
width: 50%;
height: auto;
}

View File

@ -10,9 +10,9 @@
<div style="display: flex; flex-direction: column;"> <div style="display: flex; flex-direction: column;">
<%= error_message %> <%= error_message %>
<% if dark_mode == "dark" %> <% if dark_mode == "dark" %>
<%= unfound_tv_box_dark_theme %> <img src="assets/404_tv_box_dark_theme.svg" alt="SVG Image" class="error-page">
<% else %> <% else %>
<%= unfound_tv_box_light_theme %> <img src="assets/404_tv_box_light_theme.svg" alt="SVG Image" class="error-page">
<% end %> <% end %>
</div> </div>
<%= next_steps %> <%= next_steps %>