最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

typescript - How to create a gradient background for a Vuetify control? - Stack Overflow

programmeradmin1浏览0评论

My project: Vue 3 w/ the Composition API, Typescript, and Vuetify.

I'm trying to set the background of a v-navigation-drawer control to a gradient, but whenever I set a custom class on the control, nothing changes.

This is an example of the class:

// main.css
.gradientBackground {
  color: linear-gradient(to bottom right, white, black);
}

Here is the navigation drawer:

// .vue file
<template>
  <div>
    <v-layout>
      <v-navigation-drawer
        expand-on-hover
        rail
        rail-width="72"
        class="gradientBackground "
      >
      ... bunch of stuff
      </v-navigation-drawer> 
    </v-layout>
  </div>
</template>

<script lang="ts" setup>

import '@/assets/main.css'

</script>

I've tried using a scoped style within the same file without any luck. I've only been able to directly change the color with a standard 6-digit hex value or by using the theme colors (primary, secondar, etc.) which are really just 6-digit hex values.

I've seen themes for purchase on Vuetify's store that has includes gradients, so I know it is possible. I'm just not sure how to implement it.

My project: Vue 3 w/ the Composition API, Typescript, and Vuetify.

I'm trying to set the background of a v-navigation-drawer control to a gradient, but whenever I set a custom class on the control, nothing changes.

This is an example of the class:

// main.css
.gradientBackground {
  color: linear-gradient(to bottom right, white, black);
}

Here is the navigation drawer:

// .vue file
<template>
  <div>
    <v-layout>
      <v-navigation-drawer
        expand-on-hover
        rail
        rail-width="72"
        class="gradientBackground "
      >
      ... bunch of stuff
      </v-navigation-drawer> 
    </v-layout>
  </div>
</template>

<script lang="ts" setup>

import '@/assets/main.css'

</script>

I've tried using a scoped style within the same file without any luck. I've only been able to directly change the color with a standard 6-digit hex value or by using the theme colors (primary, secondar, etc.) which are really just 6-digit hex values.

I've seen themes for purchase on Vuetify's store that has includes gradients, so I know it is possible. I'm just not sure how to implement it.

Share Improve this question edited 2 days ago DarkBee 15.5k8 gold badges72 silver badges117 bronze badges asked 2 days ago EthanEthan 112 bronze badges
Add a comment  | 

1 Answer 1

Reset to default -1

The solution was to set the background-image property and include !important

so the end result would be:

.gradientBackground {
  background-image: linear-gradient(to bottom right, white, black) !important;
}
发布评论

评论列表(0)

  1. 暂无评论