Migrating to Svelte User management not done. Footer not done Nav user management icon not positioned correctly
This commit is contained in:
parent
ac83d0702c
commit
a21186f362
55 changed files with 2126 additions and 387 deletions
23
src/components/userManager.svelte
Normal file
23
src/components/userManager.svelte
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
<script>
|
||||
export let name = "%USER%";
|
||||
export let icon;
|
||||
</script>
|
||||
|
||||
<style>
|
||||
img {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
margin: 0 auto;
|
||||
padding: .2rem;
|
||||
|
||||
}
|
||||
|
||||
a {
|
||||
position: relative;
|
||||
right: 50%;
|
||||
}
|
||||
</style>
|
||||
|
||||
|
||||
<a href="404"> <img src="/user.svg"> </a>
|
||||
Loading…
Reference in a new issue