17 lines
466 B
SCSS
17 lines
466 B
SCSS
/* You can add global styles to this file, and also import other style files */
|
|
html, body {
|
|
height: 100vh;
|
|
width: 100vw;
|
|
overflow: hidden;
|
|
margin: 0;
|
|
padding: 0;
|
|
background-color: #e2e2e2;
|
|
}
|
|
|
|
/* Core Data Grid CSS */
|
|
@import "ag-grid-community/styles/ag-grid.css";
|
|
/* Quartz Theme Specific CSS */
|
|
@import 'ag-grid-community/styles/ag-theme-quartz.css';
|
|
html, body { height: 100%; }
|
|
body { margin: 0; font-family: Roboto, "Helvetica Neue", sans-serif; }
|