Rolled out use of seperate link color style

This commit is contained in:
Dan Brown
2023-01-28 16:06:11 +00:00
parent 65ebdb7234
commit c337439370
41 changed files with 71 additions and 64 deletions

View File

@ -3,6 +3,7 @@ import {Component} from "./component";
export class SettingAppColorPicker extends Component {
setup() {
// TODO
this.colorInput = this.$refs.input;
this.lightColorInput = this.$refs.lightInput;

View File

@ -42,6 +42,8 @@ export class Tabs extends Component {
const selected = tabSection === sectionId;
tab.setAttribute('aria-selected', selected ? 'true' : 'false');
}
this.$emit('change', {section: sectionId});
}
}