Skip to content

Commit

Permalink
Small optimizations
Browse files Browse the repository at this point in the history
  • Loading branch information
Levminer committed Apr 15, 2022
1 parent d3fbc0f commit f104196
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 5 deletions.
2 changes: 1 addition & 1 deletion app/application/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ <h5 class="build-content m-0 mx-3 flex flex-row text-center font-bold">You are r
</div>

<!-- content -->
<div class="content relative mx-auto mt-20 mb-60 rounded-2xl bg-gray-700 pb-5 text-center md:w-9/12 lg:w-3/5">
<div class="content relative mx-auto mt-40 mb-60 rounded-2xl bg-gray-700 pb-5 text-center md:w-9/12 lg:w-3/5">
<h1 class="h1 m-0 p-6">Authme</h1>
<div class="mx-auto -mt-5 hidden w-2/3 rounded-2xl bg-gray-800 pb-5" id="choose">
<h3 data-loc class="pt-3">Import your codes</h3>
Expand Down
3 changes: 1 addition & 2 deletions app/application/src/js/index.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const { app, shell, dialog, clipboard, Notification } = require("@electron/remote")
const { app, shell, dialog } = require("@electron/remote")
const { aes, convert, time, localization } = require("@levminer/lib")
const logger = require("@levminer/lib/logger/renderer")
const { ipcRenderer: ipc } = require("electron")
Expand Down Expand Up @@ -189,7 +189,6 @@ const processData = (text) => {
*/
const generateCodeElements = (data) => {
document.querySelector("#searchContainer").style.display = "inline-block"
document.querySelector(".content").style.top = "100px"
document.querySelector("#choose").style.display = "none"
document.querySelector("#starting").style.display = "none"

Expand Down
2 changes: 1 addition & 1 deletion main.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const { app, BrowserWindow, Menu, Tray, shell, dialog, clipboard, globalShortcut, nativeTheme, ipcMain: ipc, powerMonitor: power, screen } = require("electron")
const { app, BrowserWindow, Menu, Tray, shell, dialog, clipboard, globalShortcut, nativeTheme, ipcMain: ipc, powerMonitor: power } = require("electron")
const { en, hu } = require("@levminer/languages")
const logger = require("@levminer/lib/logger/main")
const { autoUpdater } = require("electron-updater")
Expand Down
2 changes: 1 addition & 1 deletion styles/tailwind.css

Large diffs are not rendered by default.

0 comments on commit f104196

Please sign in to comment.