Fixed the material tabes

This commit is contained in:
Jamie Rees 2020-05-17 00:56:36 +01:00
commit ec15755b94
4 changed files with 130 additions and 116 deletions

View file

@ -25,6 +25,7 @@
"src/assets" "src/assets"
], ],
"styles": [ "styles": [
"./node_modules/@angular/material/prebuilt-themes/deeppurple-amber.css",
"src/styles/_imports.scss", "src/styles/_imports.scss",
"node_modules/bootstrap/scss/bootstrap.scss", "node_modules/bootstrap/scss/bootstrap.scss",
"node_modules/font-awesome/scss/font-awesome.scss", "node_modules/font-awesome/scss/font-awesome.scss",
@ -44,14 +45,18 @@
}, },
"configurations": { "configurations": {
"production": { "production": {
"budgets": [{ "budgets": [
{
"type": "anyComponentStyle", "type": "anyComponentStyle",
"maximumWarning": "6kb" "maximumWarning": "6kb"
}], }
"fileReplacements": [{ ],
"fileReplacements": [
{
"replace": "src/environments/environment.ts", "replace": "src/environments/environment.ts",
"with": "src/environments/environment.prod.ts" "with": "src/environments/environment.prod.ts"
}], }
],
"optimization": true, "optimization": true,
"outputHashing": "all", "outputHashing": "all",
"sourceMap": false, "sourceMap": false,
@ -63,14 +68,18 @@
"buildOptimizer": true "buildOptimizer": true
}, },
"hmr": { "hmr": {
"budgets": [{ "budgets": [
{
"type": "anyComponentStyle", "type": "anyComponentStyle",
"maximumWarning": "6kb" "maximumWarning": "6kb"
}], }
"fileReplacements": [{ ],
"fileReplacements": [
{
"replace": "src/environments/environment.ts", "replace": "src/environments/environment.ts",
"with": "src/environments/environment.hmr.ts" "with": "src/environments/environment.hmr.ts"
}] }
]
} }
} }
}, },

View file

@ -53,9 +53,10 @@
<title>Ombi</title> <title>Ombi</title>
<link href="https://fonts.googleapis.com/css?family=Roboto:300,400,500&display=swap" rel="stylesheet">
</head> </head>
<body> <body class="mat-typography">
<app-ombi> <app-ombi>
<script type="text/javascript"> <script type="text/javascript">

View file

@ -5,3 +5,7 @@
.md-form-field .mat-form-field-infix { .md-form-field .mat-form-field-infix {
width: 380px; width: 380px;
} }
td.mat-cell {
padding: 0.75rem !important;
}