other

Gradient Background

Generate gradients from https://codepen.io/hunq-vu/full/jgZaoy

<template>
  <div class="full"></div>
</template>

<script>

</script>

<style scoped>
.full {
  width: 100vw;
  height: 100vh;
  background: linear-gradient(0deg, #34e89e 0%, #0f3443 100%);
}
</style>

Generate gradients from https://codepen.io/hunq-vu/full/jgZaoy

Was this helpful?