next session

This commit is contained in:
2023-07-15 16:15:17 +00:00
parent d4e21505ad
commit c6d43a95fa
28 changed files with 988 additions and 72 deletions

View File

@@ -2,9 +2,10 @@
import { navigate } from "svelte-routing"
export let path: string
export let bright
</script>
<button class="more" on:click="{() => navigate(path)}"> mehr </button>
<button class="more" class:bright="{bright}" on:click="{() => navigate(path)}">mehr</button>
<style lang="less">
@import "../../assets/css/main.less";
@@ -16,6 +17,8 @@
padding: 2px 15px;
font-size: 14px;
font-weight: bold;
cursor: pointer;
}
.bright {
border: 2px solid @bg-color;
}
</style>