Skip to content

Commit ddaeb75

Browse files
resolved issues recommended by copilot agent during pull request
1 parent 97cc339 commit ddaeb75

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

css/main.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1746,7 +1746,7 @@ button::-moz-focus-inner, input::-moz-focus-inner {
17461746

17471747
/* When dark theme is active, don't show the opaque white chip — keep it transparent/dark */
17481748
.dark .header-menu-toggle.opaque {
1749-
background-color: rgba(255,255,255,0.0); /* subtle translucent so it doesn't pop as white */
1749+
background-color: transparent; /* subtle translucent so it doesn't pop as white */
17501750
}
17511751
.dark .header-menu-toggle.opaque .header-menu-text {
17521752
background-color: transparent;

css/tailwind.css

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
@tailwind base;
12
@tailwind components;
23
@tailwind utilities;
34

index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -914,7 +914,7 @@ <h3>Find us on</h3>
914914
<script src="js/jquery-3.2.1.min.js"></script>
915915
<script src="js/plugins.js"></script>
916916
<script src="js/main.js"></script>
917-
<script src="js/theme-toggle.js?v=dlm1"></script>
917+
<script src="js/theme-toggle.js?v=dlm2"></script>
918918
<script async src="https://platform.twitter.com/widgets.js" charset="utf-8"></script>
919919
<script>
920920
// function modalClose(){

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
"main": "index.js",
66
"scripts": {
77
"test": "echo \"Error: no test specified\" && exit 1",
8-
"build:css": "npx postcss css/tailwind.css -o css/main.css",
98
"build:tw": "npx postcss css/tailwind.css -o css/tw.css",
109
"dev:tw": "npx postcss css/tailwind.css -o css/tw.css --watch"
1110
},

styles.html

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@
2525
<!-- font-awesome (icons used by the toggle and social links) -->
2626
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css"/>
2727
<!-- Load legacy styles first, then Tailwind utilities to avoid layout overrides -->
28-
<link rel="stylesheet" href="css/main.css?v=dlm1">
29-
<link rel="stylesheet" href="css/tw.css?v=dlm1">
28+
<link rel="stylesheet" href="css/main.css?v=dlm2">
29+
<link rel="stylesheet" href="css/tw.css?v=dlm2">
3030
<script>
3131
(function () {
3232
try {
@@ -795,7 +795,7 @@ <h4>Get Notified</h4>
795795
<script src="js/jquery-3.2.1.min.js"></script>
796796
<script src="js/plugins.js"></script>
797797
<script src="js/main.js"></script>
798-
<script src="js/theme-toggle.js?v=dlm1"></script>
798+
<script src="js/theme-toggle.js?v=dlm2"></script>
799799
</body>
800800

801801
</html>

0 commit comments

Comments
 (0)