29 lines
522 B
CSS
29 lines
522 B
CSS
/* You can add global styles to this file, and also import other style files */
|
|
|
|
@import "~@angular/material/prebuilt-themes/indigo-pink.css";
|
|
|
|
html, body {
|
|
height: 100%;
|
|
background-color: #f2f2f2;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
font-family: Roboto, "Helvetica Neue", sans-serif;
|
|
}
|
|
|
|
/* For specific CSS */
|
|
app-header .mat-fab .mat-button-wrapper {
|
|
line-height: normal;
|
|
padding: 0;
|
|
}
|
|
|
|
.main-container {
|
|
max-width: 1280px;
|
|
margin: auto;
|
|
box-sizing: border-box;
|
|
padding: 0 10px;
|
|
width: 100%;
|
|
min-height: 80%;
|
|
}
|