- {#if customRules?.length}
+
{#each customRules as rule}
-
- {rule.title}
+
+
+
+
+ {rule.title}
+
+ {#if rule.tags?.length}
+
+ {#each rule.tags as tag}
+ {tag.name}
+ {/each}
+
+ {/if}
+
+
+
+
+
+
+
+
+
+
{/each}
- {:else}
-
+
+ {/if}
+
+
+
+ {#if rules?.length}
+
+
Code Review Rules
+ {#if customRules?.length}
+
Create a Rule
+ {/if}
+
+
+
+ {#if !customRules?.length}
+
- {/if}
-
+ {/if}
- {#if rules?.length}
-
Code Review Rules
+
-
-
+
+ {#if customRules?.length}
+ {#each customRules as rule}
+
+
+
+ {rule.title}
+
+ {#if rule.tags?.length}
+
+ {#each rule.tags as tag}
+ {tag.name}
+ {/each}
+
+ {/if}
+
+
+ {/each}
+ {/if}
+
+
{#each rules as rule}
-
+
{rule.title}
-
- {#each rule.tags as tag}
- {tag.name}
- {/each}
-
+ {#if rule.tags?.length}
+
+ {#each rule.tags as tag}
+ {tag.name}
+ {/each}
+
+ {/if}
{/each}
-
-
{/if}
diff --git a/tailwind.config.ts b/tailwind.config.ts
index 8e4aa65..f96627c 100644
--- a/tailwind.config.ts
+++ b/tailwind.config.ts
@@ -42,6 +42,20 @@ export default {
800: '#005753',
900: '#001F1D',
950: '#000302'
+ },
+ icey: {
+ DEFAULT: '#7B61FF',
+ 50: '#EEEBFF',
+ 100: '#E1DBFF',
+ 200: '#C8BDFF',
+ 300: '#AE9EFF',
+ 400: '#9580FF',
+ 500: '#7B61FF',
+ 600: '#3F1AFF',
+ 700: '#2200D1',
+ 800: '#17008A',
+ 900: '#0B0042',
+ 950: '#05001F'
}
}
}