@@ -33,10 +33,10 @@ import { KittyVersionService } from '../../../services/kitty-version.service';
3333 <button
3434 type="button"
3535 (click)="selectFont(font.family)"
36- [class.bg-kitty-primary]="fonts.font_family === font.family"
37- [class.text-kitty-dark]="fonts.font_family === font.family"
38- [class.bg-kitty-surface-light]="fonts.font_family !== font.family"
39- [class.text-kitty-text]="fonts.font_family !== font.family"
36+ [class.bg-kitty-primary]="fonts() .font_family === font.family"
37+ [class.text-kitty-dark]="fonts() .font_family === font.family"
38+ [class.bg-kitty-surface-light]="fonts() .font_family !== font.family"
39+ [class.text-kitty-text]="fonts() .font_family !== font.family"
4040 class="px-3 py-2 rounded-lg text-xs font-mono hover:bg-kitty-primary hover:text-kitty-dark transition-colors border border-kitty-border"
4141 [title]="font.description"
4242 >{{ font.name }}</button>
@@ -53,10 +53,10 @@ import { KittyVersionService } from '../../../services/kitty-version.service';
5353 <button
5454 type="button"
5555 (click)="selectFont(font.family)"
56- [class.bg-kitty-primary]="fonts.font_family === font.family"
57- [class.text-kitty-dark]="fonts.font_family === font.family"
58- [class.bg-kitty-surface-light]="fonts.font_family !== font.family"
59- [class.text-kitty-text]="fonts.font_family !== font.family"
56+ [class.bg-kitty-primary]="fonts() .font_family === font.family"
57+ [class.text-kitty-dark]="fonts() .font_family === font.family"
58+ [class.bg-kitty-surface-light]="fonts() .font_family !== font.family"
59+ [class.text-kitty-text]="fonts() .font_family !== font.family"
6060 class="px-2 py-1.5 rounded text-xs font-mono hover:bg-kitty-primary hover:text-kitty-dark transition-colors border border-kitty-border"
6161 [title]="font.description"
6262 >{{ font.name }}</button>
0 commit comments