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

View file

@ -1,4 +1,4 @@
.small-middle-container{
.small-middle-container {
margin: auto;
width: 95%;
}

View file

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

View file

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