Skip to content
Snippets Groups Projects
Commit e501118a authored by onny's avatar onny
Browse files

fix show grid view left-align

parent ca44b688
No related branches found
No related tags found
No related merge requests found
......@@ -9,6 +9,10 @@
[#130](https://git.project-insanity.org/onny/nextcloud-app-podcast/-/issues/130) @onny
### Fixed
- Fix shows grid view layout left-align
[#105](https://git.project-insanity.org/onny/nextcloud-app-podcast/-/issues/105) @onny
- Trim podcast episode description in show view
[#123](https://git.project-insanity.org/onny/nextcloud-app-podcast/-/issues/123) @onny
- Player: Display correct position while seeking
[#124](https://git.project-insanity.org/onny/nextcloud-app-podcast/-/issues/124) @onny
- Fix app description, added more screenshots
......
......@@ -88,13 +88,12 @@ export default {
.grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
grid-gap: 15px;
}
.podcastCard {
height: 220px;
margin-right: 15px;
flex-shrink: 0;
background: rgba(241, 241, 241, 0.6);
border-radius: 3px;
padding: 15px;
......
......@@ -39,8 +39,8 @@ export class ShowApi {
imgurl: show.smallImageURL,
title: show.title,
author: show.author,
lastpub: show.lastpub,
}
// lastpub: show.lastpub,
axios.defaults.headers.requesttoken = requesttoken
return axios.post(this.url('/shows'), show)
.then(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment