Skip to content

Commit

Permalink
Fixes
Browse files Browse the repository at this point in the history
Fixed stats container on mobile,
Fixed Theming for Mobile devices,
  • Loading branch information
RepGraphics committed Jan 5, 2025
1 parent 3819372 commit a47b6f5
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "euphoria-paste",
"version": "0.1.0",
"version": "0.1.1",
"private": true,
"description": "Private Pastebin Server",
"keywords": [
Expand Down
2 changes: 1 addition & 1 deletion static/application.css
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ body, textarea, #key, .fab, #messages, .tippy-content {
/* Adjust for mobile */
@media (max-width: 1023px) {
#stats-container {
bottom: 5%; /* Above the mobile controls */
bottom: 10%; /* Above the mobile controls */
left: 1px;
}
}
Expand Down
9 changes: 4 additions & 5 deletions static/index.html
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
<html>
<html data-theme="dark">
<head>
<title>Euphoria Development | Paste</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" type="text/css" href="solarized_dark.css" />
<link rel="stylesheet" type="text/css" href="application.css" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script>
<link href="https://cdn.jsdelivr.net/npm/[email protected]/dist/full.min.css" rel="stylesheet" type="text/css" />
Expand All @@ -25,9 +24,9 @@
theme: {
extend: {}
},
daisyui: {
themes: ["dark"]
}
daisyui: {
themes: ["dark"]
}
}
</script>
<script type="text/javascript">
Expand Down

0 comments on commit a47b6f5

Please sign in to comment.