Fix warnings (#102)

Signed-off-by: Alexander Platov <sas_lord@mail.ru>
This commit is contained in:
Alexander Platov 2021-08-31 10:15:42 +03:00 committed by GitHub
parent ef5c8d8d2a
commit 4e69d41984
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 1 additions and 25 deletions

View File

@ -19,7 +19,6 @@
import Icon from './Icon.svelte'
export let icon: Asset | AnySvelteComponent
export let label: IntlString | undefined
</script>
<div class="icon-button">

View File

@ -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">

View File

@ -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;

View File

@ -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>