FUCK YOU! YOU FUCKIN' DICK!

This commit is contained in:
split / May 2023-05-10 15:53:55 -07:00
parent 88035195be
commit eb53609e79
4 changed files with 27 additions and 3 deletions

View file

@ -78,7 +78,7 @@ fileApiRoutes.post("/manage", parser, (req,res) => {
if (!req.body.value) delete files.files[e].tag if (!req.body.value) delete files.files[e].tag
else { else {
if (req.body.value.toString().length > 30) return if (req.body.value.toString().length > 30) return
files.files[e].tag = req.body.value.toString().lower() files.files[e].tag = req.body.value.toString().toLowerCase()
} }
modified++; modified++;
break; break;

View file

@ -169,5 +169,12 @@
} }
} }
} }
.category {
p {
text-align:left;
}
}
} }
} }

View file

@ -81,12 +81,27 @@
color: #AAAAAA; color: #AAAAAA;
font-size: 14px; font-size: 14px;
margin: 10px 0px 3px 0px; margin: 10px 0px 3px 0px;
text-align:center;
@media screen and (max-width:500px) { @media screen and (max-width:500px) {
font-size:16px; font-size:16px;
} }
} }
} }
}
.mdHitbox {
position:absolute;
width:100%;
height:100%;
top:0%;
left:0%;
cursor:pointer;
z-index: 0;
border:none;
background-color: #00000000;
outline:none;
} }
.modal { .modal {
@ -96,4 +111,5 @@
transform:translateY(-100%); transform:translateY(-100%);
top:100%; top:100%;
left:0%; left:0%;
z-index: 1;
} }

View file

@ -35,7 +35,8 @@
</script> </script>
{#if activeModal} {#if activeModal}
<button class="modalContainer" on:click|self={forceCancel} transition:fade={{duration:200}}> <div class="modalContainer" transition:fade={{duration:200}}>
<button class="mdHitbox" on:click|self={forceCancel}></button>
<div class="modal" transition:slide={{duration:200}}> <div class="modal" transition:slide={{duration:200}}>
<div class="optPicker"> <div class="optPicker">
@ -73,5 +74,5 @@
</div> </div>
</div> </div>
</button> </div>
{/if} {/if}