Color changes, fix login password box

- type=password was on the wrong element
- New color assignments for tables
- Only uses one palette for now
- Changed input bg to highlight color
- Forced dark mode on sidebar
- Moved some table coloring to components.css
- Fixed some comments being out-of-line
This commit is contained in:
adroslice 2023-03-26 20:23:45 +02:00
parent 89933d4986
commit 3a0d094e7b
5 changed files with 75 additions and 38 deletions

View file

@ -33,6 +33,6 @@ onMounted(async() => {
<PageHeader title="Forward Rules">
<button @click="loadRules">Load Rules</button>
</PageHeader>
<NiceTable class="cl-secondary" :columns="columns" v-model:data="rules"/>
<NiceTable :columns="columns" v-model:data="rules"/>
</div>
</template>