mirror of https://gitlab.com/m3f_usm/cms-sveltekit
23 lines
376 B
Svelte
23 lines
376 B
Svelte
<script>
|
|
import { base } from "$app/paths";
|
|
</script>
|
|
|
|
<div class="bg-dark text-light py-2 sticky-top">
|
|
<div class="container">
|
|
<a href={base}>Inicio</a>
|
|
</div>
|
|
</div>
|
|
|
|
<style>
|
|
.bg-dark {
|
|
background: linear-gradient(90deg, #0477d1, #0023);
|
|
}
|
|
|
|
.bg-dark a {
|
|
color: #fff;
|
|
text-decoration: none;
|
|
}
|
|
.bg-dark a:hover {
|
|
border-bottom: 1px solid #fff;
|
|
}
|
|
</style> |