11 lines
146 B
Svelte
11 lines
146 B
Svelte
|
<div class="gradient"></div>
|
||
|
|
||
|
<style>
|
||
|
.gradient {
|
||
|
width: 100%;
|
||
|
height: 100%;
|
||
|
|
||
|
background: linear-gradient(0deg, white, black);
|
||
|
}
|
||
|
</style>
|