add gradients to search grids

This commit is contained in:
geoffrey45
2022-02-22 20:56:13 +03:00
parent f141dd7f06
commit f9cceed2ba
6 changed files with 37 additions and 32 deletions
+9 -9
View File
@@ -1,6 +1,6 @@
<template>
<div class="tracks-results" v-if="tracks">
<div class="heading">TRACKS</div>
<div class="heading theme">TRACKS</div>
<div class="items">
<table>
<tbody>
@@ -39,20 +39,20 @@ function loadMore() {
</script>
<style lang="scss">
$theme: rgb(86, 86, 87);
$theme: #0056f5;
.right-search .tracks-results {
border-radius: 0.5rem;
padding: $small;
border: 2px solid $theme;
.heading {
background-color: $theme;
color: #fff;
}
.morexx > button {
background-color: $theme !important;
.theme {
background-image: linear-gradient(
45deg,
#21216b 20%,
$theme 50%,
#16266b 100%
);
color: #fff;
}
}