form view

This commit is contained in:
Jan Prochazka
2021-03-21 17:55:25 +01:00
parent 965a967450
commit 34f2fb2a0a
13 changed files with 329 additions and 10 deletions

View File

@@ -0,0 +1,25 @@
<script lang="ts">
import FontIcon from '../icons/FontIcon.svelte';
</script>
<div on:click|stopPropagation>
<FontIcon icon="icon form" />
</div>
<style>
div {
position: absolute;
right: 0px;
top: 1px;
color: var(--theme-font-3);
background-color: var(--theme-bg-1);
border: 1px solid var(--theme-bg-1);
}
div:hover {
color: var(--theme-font-hover);
border: var(--theme-border);
top: 1px;
right: 0px;
}
</style>