Fix warnings (#102)

Signed-off-by: Alexander Platov <sas_lord@mail.ru>
This commit is contained in:
Alexander Platov
2021-08-31 09:15:42 +02:00
committed by GitHub
parent ef5c8d8d2a
commit 4e69d41984
4 changed files with 1 additions and 25 deletions
@@ -19,7 +19,6 @@
import Icon from './Icon.svelte'
export let icon: Asset | AnySvelteComponent
export let label: IntlString | undefined
</script>
<div class="icon-button">
@@ -22,7 +22,6 @@
import Avatar from '../../img/avatar.png'
export let label: IntlString
export let okAction: () => void
const dispatch = createEventDispatcher()
</script>
@@ -36,7 +35,7 @@
</div>
<div class="avatar">
<img src={Avatar} />
<img src={Avatar} alt={'Avatar'} />
</div>
<div class="abs-lb-content actions">
@@ -129,18 +129,6 @@
</div>
<style lang="scss">
a {
display: flex;
align-items: center;
}
a span {
display: inline-flex;
justify-content: center;
align-items: center;
margin-right: .5rem;
transform-origin: center center;
transform: scale(.75);
}
.header {
position: relative;
padding: 1.5rem 1.5rem 0;
@@ -57,14 +57,4 @@
<Row><ReferenceInput /></Row>
</Grid>
</Section>
<!-- <Section icon={IconComments} label={'Comments'}>
<CommentViewer />
<div class="reference"><ReferenceInput /></div>
</Section> -->
</Dialog>
<style lang="scss">
.reference {
margin-top: 24px;
}
</style>