remove background colors

-
try to imitate Google's design of things
it makes UI look declattered
-
This commit is contained in:
geoffrey45
2022-09-02 16:05:11 +03:00
parent c782e400c6
commit c20bbd795c
13 changed files with 33 additions and 19 deletions
@@ -1,6 +1,6 @@
<template>
<div
class="p-card new-playlist-card rounded bg-primary"
class="p-card new-playlist-card rounded"
@click="Modal.showNewPlaylistModal()"
>
<PlusSvg />
@@ -2,9 +2,9 @@
<router-link
:to="{ name: 'PlaylistView', params: { pid: props.playlist.playlistid } }"
:playlist="props.playlist"
class="p-card rounded bg-primary"
class="p-card rounded"
>
<img :src="imguri + props.playlist.thumb" class="rounded" />
<img :src="imguri + props.playlist.thumb"/>
<div class="bottom">
<div class="name ellip">{{ props.playlist.name }}</div>
<div class="count">
@@ -32,14 +32,16 @@ const props = defineProps<{
<style lang="scss">
.p-card {
width: 100%;
padding: 1rem;
padding: $medium;
transition: all 0.25s ease;
position: relative;
background-color: $playlist-card-bg;
img {
width: 100%;
aspect-ratio: 1;
object-fit: cover;
border-radius: $medium;
}
&:hover {