diff --git a/changes/changelog.d/530.bugfix b/changes/changelog.d/530.bugfix new file mode 100644 index 0000000000000000000000000000000000000000..ccde155401df46ded99b1dd6b2e6c9a0162f7097 --- /dev/null +++ b/changes/changelog.d/530.bugfix @@ -0,0 +1 @@ +Set sane width default for ui cards and center play button (#530) diff --git a/front/src/components/audio/album/Widget.vue b/front/src/components/audio/album/Widget.vue index 1248348c78f42df00234ab2e7cbafde10e8ddc39..73bf0d226949dcd63ad530c25c2f4e1e91e27a8d 100644 --- a/front/src/components/audio/album/Widget.vue +++ b/front/src/components/audio/album/Widget.vue @@ -120,9 +120,9 @@ export default { width: 100%; } .ui.cards { - justify-content: center; + justify-content: flex-start; } -.ui.cards > .card { +.ui.five.cards > .card { width: 15em; } .with-overlay { @@ -135,3 +135,8 @@ export default { align-items: center !important; } </style> +<style> +.ui.cards .ui.button { + margin-right: 0px; +} +</style>