Include recent Magic app work: Tauri native shell, iOS device detection via supervise-magic sidecar, MDM client, local HTTP server, new pages (detect, enroll, supervise, sideload, pair, preflight, configure, done), and updated device section/status UI.
26 lines
517 B
CSS
26 lines
517 B
CSS
@import "tailwindcss";
|
|
@import "@nuxt/ui";
|
|
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;500;600;700;800&display=swap');
|
|
|
|
:root {
|
|
--rebreak-primary: #2e7fd4;
|
|
--rebreak-primary-light: #4a9af0;
|
|
--rebreak-primary-dark: #1e5fa3;
|
|
--font-family: 'Nunito', system-ui, -apple-system, sans-serif;
|
|
}
|
|
|
|
html,
|
|
body,
|
|
#__nuxt {
|
|
height: 100%;
|
|
width: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
font-family: var(--font-family);
|
|
}
|
|
|
|
/* Nunito for all UI components */
|
|
* {
|
|
font-family: var(--font-family);
|
|
}
|