25 lines
442 B
SCSS
25 lines
442 B
SCSS
/* Global styles for myCRM */
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
background: #f9fafb;
|
|
}
|
|
|
|
#app {
|
|
width: 100%;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
/* PrimeVue Theme Overrides */
|
|
:root {
|
|
--primary-color: #2563eb;
|
|
--primary-color-text: #ffffff;
|
|
}
|