From 238a216a45d838f2abda977ea1c6b804dfad7ab5 Mon Sep 17 00:00:00 2001 From: sanjayk03-dev Date: Tue, 13 Aug 2024 09:58:35 +0530 Subject: [PATCH] changed image size --- src/pug/templates/control-view.pug | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/pug/templates/control-view.pug b/src/pug/templates/control-view.pug index 2b8cada..ecdc7bf 100644 --- a/src/pug/templates/control-view.pug +++ b/src/pug/templates/control-view.pug @@ -279,9 +279,9 @@ script#control-view-template(type="text/x-template") @click="start_pause", :disabled="!state.selected", style="height:100px;width:100px;font-weight:normal") if is_running - img(src="images/pause_gcode.png" style="height: 70px;") + img(src="images/pause_gcode.png" style="height: 55px;") else - img(src="images/play_gcode.png" style="height: 70px;") + img(src="images/play_gcode.png" style="height: 55px;") button.pure-button(title="Stop program.", @click="stop", style="height:100px;width:100px;font-weight:normal") img(src="images/stop.png" style="height: 70px;") @@ -306,7 +306,7 @@ script#control-view-template(type="text/x-template") button.pure-button(title="Upload a new GCode folder.", @click="open_folder", :disabled="!is_ready",style="height:100px;width:100px;font-weight:normal") - img(src="images/upload_folder.png" style="height: 70px;") + img(src="images/upload_folder.png" style="height: 65px;") form.gcode-folder-input.file-upload input#folderInput(type="file", @change="upload_folder", :disabled="!is_ready", @@ -314,7 +314,7 @@ script#control-view-template(type="text/x-template") button.pure-button(title="Upload a new GCode program.", @click="open_file", :disabled="!is_ready",style="height:100px;width:100px;font-weight:normal") - img(src="images/upload_gcode.png" style="height: 70px;") + img(src="images/upload_gcode.png" style="height: 65px;") form.gcode-file-input.file-upload input(type="file", @change="upload_file", :disabled="!is_ready", @@ -324,12 +324,12 @@ script#control-view-template(type="text/x-template") :href="'/api/file/' + state.selected", title="Download the selected GCode program.") button.pure-button(:disabled="!state.selected", style="height:100px;width:100px") - img(src="images/download_gcode.png" style="height: 70px;") + img(src="images/download_gcode.png" style="height: 65px;") button.pure-button(title="Delete current GCode program.", @click="deleteGCode = true", :disabled="!state.selected || !is_ready",style="height:100px;width:100px;font-weight:normal") - img(src="images/delete_gcode.png" style="height: 70px;") + img(src="images/delete_gcode.png" style="height: 55px;") message.error-message(:show.sync="deleteGCode") h3(slot="header") Select files to delete: