Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 9 additions & 8 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,14 +1,15 @@
# Deps
node_modules
node_modules/

# Output
/.svelte-kit
/build
/dist
/dist_*
/target
/.gro
/.zzz
.svelte-kit/
build/
dist/
dist_*/
target/
.gro/
.fuz/
.zzz/

# Generated test repos
/src/test/fixtures/repos/
Expand Down
2 changes: 1 addition & 1 deletion src/lib/ModulesDetail.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
{#each repos_modules as repo_modules (repo_modules)}
{@const {repo, modules} = repo_modules}
<li class="repo_module">
<header class="width_100 position_relative">
<header class="width:100% position:relative">
<a href="#{repo.name}" id={repo.name} class="subtitle">🔗</a>
<a href={resolve(`/tree/${repo.repo_name}`)}>{repo.name}</a>
</header>
Expand Down
2 changes: 1 addition & 1 deletion src/lib/ModulesPage.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
<title>modules {repo.package_json.glyph} {repo.package_json.name}</title>
</svelte:head>

<main class="box width_100">
<main class="box width:100%">
<div class="p_lg">
<PageHeader {repo} />
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/lib/PullRequestsPage.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
<title>pull requests {repo.package_json.glyph} {repo.package_json.name}</title>
</svelte:head>

<main class="box width_100">
<main class="box width:100%">
<div class="p_lg">
<PageHeader {repo} />
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/lib/TreeItemPage.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
<title>{slug} - tree {repo.package_json.glyph} {repo.package_json.name}</title>
</svelte:head>

<main class="box width_100">
<main class="box width:100%">
<div class="p_lg">
<PageHeader {repo} />
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/lib/TreePage.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<title>tree {repo.package_json.glyph} {repo.name}</title>
</svelte:head>

<main class="box width_100">
<main class="box width:100%">
<div class="p_lg">
<PageHeader {repo} />
</div>
Expand Down
4 changes: 2 additions & 2 deletions src/routes/MainHeader.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<header class="pane p_lg">
<div class="box bg mb_lg">
<h1 class="mb_lg font_size_xl2 font_weight_400">fuz_gitops</h1>
<h1 class="mb_lg font_size_xl2 font-weight:400">fuz_gitops</h1>
<!-- TODO FuzGitopsLogo -->
<Svg
data={logo_fuz}
Expand All @@ -14,5 +14,5 @@
label="a friendly blue spider facing you"
/>
</div>
<p class="text_align_center">a tool for managing many repos 🪄</p>
<p class="text-align:center">a tool for managing many repos 🪄</p>
</header>
2 changes: 1 addition & 1 deletion src/routes/about/+page.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
<PageHeader repo={library}></PageHeader>
</div>
<EcosystemLinksPanel />
<section class="box width_100 mb_lg">
<section class="box width:100% mb_lg">
<div class="panel p_md width_upto_md">
<LibraryDetail {library} />
</div>
Expand Down
Loading