Skip to content

Commit

Permalink
Fix lint errors
Browse files Browse the repository at this point in the history
  • Loading branch information
stnguyen90 committed Sep 28, 2023
1 parent ede96f4 commit 1499daf
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 10 deletions.
2 changes: 1 addition & 1 deletion src/app.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<head>
<meta charset="utf-8" />
<meta name="description" content="" />
<link rel="icon" type="image/svg+xml" href="/logos/appwrite-icon.svg" />
<link rel="icon" type="image/svg+xml" href="/logos/appwrite-icon.svg" />
<link
rel="preload"
href="/fonts/inter/inter-v8-latin-600.woff2"
Expand Down
2 changes: 1 addition & 1 deletion src/lib/components/avatar.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
export let size: number;
export let src: string;
export let name: string;
export let color: string = 'transparent';
export let color = 'transparent';
</script>

<img
Expand Down
2 changes: 1 addition & 1 deletion src/lib/components/avatarInitials.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
export let name: string;
export let size: number;
export let background: string | undefined = undefined;
export let color: string = 'black';
export let color = 'black';
$: src = sdk.forConsole.avatars.getInitials(name, size * 2, size * 2, background).toString();
</script>
Expand Down
1 change: 0 additions & 1 deletion src/lib/layout/unauthenticated.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
export let imgLight = LoginLight;
export let imgDark = LoginDark;
</script>

<main class="grid-1-1 is-full-page" id="main">
Expand Down
3 changes: 1 addition & 2 deletions src/routes/console/project-[project]/overview/onboard.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -154,8 +154,7 @@
<img src={onBoardImage1Mobile} class="is-only-mobile u-width-full-line" alt="statistics" />
<img src={onBoardImage1Desktop} class="is-not-mobile u-width-full-line" alt="statistics" />
<div class="u-height-100-percent u-width-full-line u-padding-block-start-20">
<div
class="u-flex u-flex-vertical u-height-100-percent u-cross-center u-padding-inline-24">
<div class="u-flex u-flex-vertical u-height-100-percent u-cross-center u-padding-inline-24">
<div class="avatar">
<i class="icon-lock-closed" />
</div>
Expand Down
6 changes: 2 additions & 4 deletions static/fonts/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,7 @@
font-style: italic;
font-weight: 400;
font-display: swap;
src: url('https://fonts.appwrite.io/aeonik-pro/AeonikPro-RegularItalic.woff2')
format('woff2');
src: url('https://fonts.appwrite.io/aeonik-pro/AeonikPro-RegularItalic.woff2') format('woff2');
}

@font-face {
Expand All @@ -124,8 +123,7 @@
font-style: italic;
font-weight: 500;
font-display: swap;
src: url('https://fonts.appwrite.io/aeonik-pro/AeonikPro-MediumItalic.woff2')
format('woff2');
src: url('https://fonts.appwrite.io/aeonik-pro/AeonikPro-MediumItalic.woff2') format('woff2');
}

@font-face {
Expand Down

0 comments on commit 1499daf

Please sign in to comment.