Skip to content

Commit

Permalink
fix(organizations): remove organizations settings
Browse files Browse the repository at this point in the history
  • Loading branch information
Debaerdm committed Feb 17, 2021
2 parents 40924de + 676d89e commit 3d394d5
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion src/components/AccountSummary/AccountSummary.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -85,4 +85,4 @@
.user {
margin-right: auto;
}
</style>
</style>
24 changes: 12 additions & 12 deletions src/components/Fieldset/Fieldset.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,17 @@
export let outro: string;
</script>

<fieldset>
<legend>{title}</legend>
{#if intro}
<p>{intro}</p>
{/if}
<slot />
{#if outro}
<p>{outro}</p>
{/if}
</fieldset>

<style>
legend {
font-family: 'roboto slab', serif;
Expand All @@ -13,7 +24,7 @@
padding: 1rem;
border: none;
border-radius: 8px;
background-color: #555;
background-color: #444;
}
fieldset:not(:last-child) {
Expand All @@ -28,14 +39,3 @@
margin-bottom: 1rem;
}
</style>

<fieldset>
<legend>{title}</legend>
{#if intro}
<p>{intro}</p>
{/if}
<slot />
{#if outro}
<p>{outro}</p>
{/if}
</fieldset>

0 comments on commit 3d394d5

Please sign in to comment.