Skip to content

Commit 1c873a9

Browse files
committed
Fix Background Color
1 parent bfd4dfb commit 1c873a9

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

src/css/feedback.css

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -14,27 +14,27 @@ body {
1414
}
1515

1616
[data-bs-theme='dark'] #content-wrapper {
17-
background: rgba(0 0 0 / 50%);
17+
background-color: rgba(0 0 0 / 50%);
1818
filter: drop-shadow(15px 15px 12px #000000);
1919
}
2020
[data-bs-theme='light'] #content-wrapper {
21-
background: rgba(255 255 255 / 60%);
21+
background-color: rgba(255 255 255 / 60%);
2222
}
2323

2424
[data-bs-theme='dark'] .form-control {
25-
background: rgba(0 0 0 / 50%);
25+
background-color: rgba(0 0 0 / 50%);
2626
}
2727
[data-bs-theme='light'] .form-control {
28-
background: rgba(255 255 255 / 50%);
28+
background-color: rgba(255 255 255 / 50%);
2929
}
3030

3131
[data-bs-theme='dark'] .navbar,
3232
[data-bs-theme='dark'] .footer {
3333
backdrop-filter: blur(6px);
34-
background: rgba(0 0 0 / 50%) !important;
34+
background-color: rgba(0 0 0 / 50%) !important;
3535
}
3636
[data-bs-theme='light'] .navbar,
3737
[data-bs-theme='light'] .footer {
3838
backdrop-filter: blur(6px);
39-
background: rgba(255 255 255 / 50%) !important;
39+
background-color: rgba(255 255 255 / 50%) !important;
4040
}

src/html/feedback.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ <h1 class="align-middle mb-0">{{ site.site_name }} {{ page.title }}</h1>
1818
<form id="uninstall-form">
1919
<input type="hidden" value="{{ site.discord_webhook }}" id="discord-webhook" hidden="hidden">
2020

21-
<select id="app-list" class="form-select form-select-lg mb-3" aria-label="Select Feedback Reason">
21+
<select id="app-list" class="form-select form-select-lg form-control mb-3" aria-label="Select Feedback Reason">
2222
<option value="General Feedback" selected>Select an Application (Optional)</option>
2323
</select>
2424

0 commit comments

Comments
 (0)