mirror of
https://github.com/RoboSats/robosats.git
synced 2025-01-10 16:21:36 +00:00
6b2dedce13
* Re-init new tradebox * Wip progress on OrderDetails * Wip 2 OrderDetails * Fix multiple requests on load * Add functional Order page * Fixes order page * Fix delete storage * Fix order page style * Add Public order prompt * Add paused order prompt * Add expired prompt * Create statusToContract logics * Move fetch order loop to Main * Add payout and wait prompts * Fix order fetch on badOrder * Fix styles * Add chat and dispute prompts * Add remaining prompts * Fix style * Add notifications component * Fix take order style, add more notifications * Add page title notification * Add more notifications and small tradebox fixes * Small fixes * Small fixes to routing failure prompt * Remove old trade box * Add bad take order
15 lines
394 B
TypeScript
15 lines
394 B
TypeScript
import { systemClient } from '../services/System';
|
|
import BaseSettings from './Settings.model';
|
|
|
|
class Settings extends BaseSettings {
|
|
constructor() {
|
|
super();
|
|
const fontSizeCookie = systemClient.getItem('settings_fontsize_basic');
|
|
this.fontSize = fontSizeCookie !== '' ? Number(fontSizeCookie) : 14;
|
|
}
|
|
|
|
public frontend: 'basic' | 'pro' = 'basic';
|
|
}
|
|
|
|
export default Settings;
|