Navigation | Overlay |
---|---|
t Navigate files | h Toggle hits |
y Change url to tip of branch | m Toggle misses |
b / v Jump to prev/next hit line | p Toggle partial |
z / x Jump to prev/next missed or partial line | 1..9 Toggle flags |
shift + o Open current page in GitHub | a Toggle all on |
/ or ? Show keyboard shortcuts dialog | c Toggle context lines or commits |
1 | 1 |
// Styles
|
2 | 1 |
import '../../styles/main.sass' |
3 |
|
|
4 |
// Locale
|
|
5 | 1 |
import { en } from '../../locale' |
6 |
|
|
7 |
// Icons
|
|
8 |
// TODO: Enable for v3
|
|
9 |
// import mdi from '../../services/icons/presets/mdi'
|
|
10 |
|
|
11 |
// Types
|
|
12 |
import { VuetifyPreset } from 'vuetify/types/services/presets' |
|
13 |
|
|
14 | 1 |
export const preset: VuetifyPreset = { |
15 |
breakpoint: { |
|
16 |
// TODO: update to MD2 spec in v3 - 1280
|
|
17 |
mobileBreakpoint: 1264, |
|
18 |
scrollBarWidth: 16, |
|
19 |
thresholds: { |
|
20 |
xs: 600, |
|
21 |
sm: 960, |
|
22 |
md: 1280, |
|
23 |
lg: 1920, |
|
24 |
},
|
|
25 |
},
|
|
26 |
icons: { |
|
27 |
// TODO: remove v3
|
|
28 |
iconfont: 'mdi', |
|
29 |
values: {}, |
|
30 |
},
|
|
31 |
lang: { |
|
32 |
current: 'en', |
|
33 |
locales: { en }, |
|
34 |
// Default translator exists in lang service
|
|
35 |
t: undefined as any, |
|
36 |
},
|
|
37 |
rtl: false, |
|
38 |
theme: { |
|
39 |
dark: false, |
|
40 |
default: 'light', |
|
41 |
disable: false, |
|
42 |
options: { |
|
43 |
cspNonce: undefined, |
|
44 |
customProperties: undefined, |
|
45 |
minifyTheme: undefined, |
|
46 |
themeCache: undefined, |
|
47 |
variations: true, |
|
48 |
},
|
|
49 |
themes: { |
|
50 |
light: { |
|
51 |
primary: '#1976D2', |
|
52 |
secondary: '#424242', |
|
53 |
accent: '#82B1FF', |
|
54 |
error: '#FF5252', |
|
55 |
info: '#2196F3', |
|
56 |
success: '#4CAF50', |
|
57 |
warning: '#FB8C00', |
|
58 |
},
|
|
59 |
dark: { |
|
60 |
primary: '#2196F3', |
|
61 |
secondary: '#424242', |
|
62 |
accent: '#FF4081', |
|
63 |
error: '#FF5252', |
|
64 |
info: '#2196F3', |
|
65 |
success: '#4CAF50', |
|
66 |
warning: '#FB8C00', |
|
67 |
},
|
|
68 |
},
|
|
69 |
},
|
|
70 |
}
|
Read our documentation on viewing source code .