!wip added collection button

pull/3895/head
TidusJar 6 years ago
parent f1877efe02
commit d78462a516

@ -11,7 +11,7 @@ namespace Ombi.Api.TheMovieDb.Models
[JsonProperty("backdrop_path")] [JsonProperty("backdrop_path")]
public string BackdropPath { get; set; } public string BackdropPath { get; set; }
[JsonProperty("belongs_to_collection")] [JsonProperty("belongs_to_collection")]
public BelongsToCollection Collecion { get; set; } public BelongsToCollection BelongsToCollection { get; set; }
[JsonProperty("budget")] [JsonProperty("budget")]
public int Budget { get; set; } public int Budget { get; set; }
[JsonProperty("genres")] [JsonProperty("genres")]

@ -103,7 +103,7 @@
<div class="row"> <div class="row">
<div class="col-12 col-md-3 "> <div class="col-12 col-md-3 ">
<button mat-raised-button class="btn-spacing-below full-width">{{movie.belongsToCollection.name}}</button>
<mat-card class="card-full mat-elevation-z8"> <mat-card class="card-full mat-elevation-z8">
<mat-card-content> <mat-card-content>
<div> <div>

@ -131,6 +131,10 @@ section {
width: 100%; width: 100%;
} }
.full-width {
width: 100%;
}
#info-wrapper .sidebar .poster .real { #info-wrapper .sidebar .poster .real {
height: 100%; height: 100%;
top: 0; top: 0;
@ -154,6 +158,10 @@ section {
margin-right:10px; margin-right:10px;
} }
.btn-spacing-below {
margin-bottom: 10px;
}
.tagline { .tagline {
margin-top: 10px; margin-top: 10px;
margin-left: 10px; margin-left: 10px;

Loading…
Cancel
Save