cms_static/src/routes/Navigator.svelte

23 lines
376 B
Svelte
Raw Normal View History

2024-03-07 22:24:04 -03:00
<script>
import { base } from "$app/paths";
</script>
<div class="bg-dark text-light py-2 sticky-top">
<div class="container">
2024-03-08 00:47:33 -03:00
<a href={base}>Inicio</a>
2024-03-07 22:24:04 -03:00
</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>