mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-20 05:13:18 -07:00
Fixed the material tabes
This commit is contained in:
parent
6a1dd87eeb
commit
ec15755b94
4 changed files with 130 additions and 116 deletions
|
@ -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"
|
||||
}]
|
||||
}
|
||||
]
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
.small-middle-container{
|
||||
.small-middle-container {
|
||||
margin: auto;
|
||||
width: 95%;
|
||||
}
|
|
@ -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">
|
||||
|
|
|
@ -5,3 +5,7 @@
|
|||
.md-form-field .mat-form-field-infix {
|
||||
width: 380px;
|
||||
}
|
||||
|
||||
td.mat-cell {
|
||||
padding: 0.75rem !important;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue