Download and Rules

This commit is contained in:
2023-11-18 16:52:54 +01:00
parent 3889f28eb8
commit 3996376381
17 changed files with 88 additions and 12 deletions

View File

@@ -54,7 +54,7 @@
<button class="btn mt-4 !mx-0 justify-center" type="submit" on:click|preventDefault={login}>{t("login.submit")}</button>
</form>
<style lang="scss">
<style lang="postcss">
input {
@apply border-2 rounded-md p-2 shadow-2xl w-80
dark:bg-neutral-800

View File

@@ -59,7 +59,7 @@ async function deleteBranch(con: boolean = false) {
async function createFile() {
let name = prompt("File name:", "pages/en/[Name]")
if (name) {
await $pageRepo.createFile(`${name}.md`, selectedBranch)
await $pageRepo.createFile(`${name}`, selectedBranch)
reload()
}
}

View File

@@ -99,14 +99,14 @@
<SchematicInfo schematicId={infoModalId} on:reset={() => infoModalId = null} />
{/if}
<style lang="scss">
<style lang="postcss">
table {
@apply w-full;
}
tr {
@apply transition-colors cursor-pointer border-b
dark:hover:bg-gray-800 hover:bg-gray-300;
dark:hover:bg-gray-800 hover:bg-gray-300;
}
th {