Redesign whole website #16

Merged
leomurca merged 18 commits from development into main 2025-04-12 18:04:08 +00:00
3 changed files with 10 additions and 4 deletions
Showing only changes of commit 90f98cf285 - Show all commits

View file

@ -30,7 +30,7 @@
on:change={onChange} on:change={onChange}
bind:this={files} bind:this={files}
/> />
<button on:click={onClick}>{$t("main.browse")}</button> <button on:click|preventDefault={onClick}>{$t("main.browse")}</button>
</div> </div>
<style> <style>

View file

@ -24,6 +24,7 @@
flex-direction: column; flex-direction: column;
align-items: center; align-items: center;
} }
#selected-file-card { #selected-file-card {
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
@ -35,7 +36,10 @@
} }
#selected-file-card-error { #selected-file-card-error {
border: 1px solid red; display: flex;
justify-content: space-between;
color: #06345F;
font-weight: bolder;
width: 500px; width: 500px;
padding-left: 15px; padding-left: 15px;
margin-top: 10px; margin-top: 10px;

View file

@ -134,7 +134,8 @@
font-weight: bold; font-weight: bold;
color: white; color: white;
padding: 10px; padding: 10px;
border-radius: 0; border: none;
border-radius: 10px;
width: 200px; width: 200px;
height: 45px; height: 45px;
} }
@ -151,7 +152,8 @@
font-weight: bold; font-weight: bold;
color: white; color: white;
padding: 10px; padding: 10px;
border-radius: 0; border: none;
border-radius: 10px;
width: 200px; width: 200px;
height: 45px; height: 45px;
text-align: center; text-align: center;