-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add line style in nav * Add line design * Change line design and nav responsive * Create Heading * Add Heading * Corrections in lint * others * Delete nodesource_setup.sh --------- Co-authored-by: Alexander Goussas <84427521+aloussase@users.noreply.github.com>
- Loading branch information
1 parent
a438c89
commit 8c0d246
Showing
6 changed files
with
144 additions
and
7 deletions.
There are no files selected for viewing
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
<script lang="ts"> | ||
export let title: string; // Recibirá el título que se mostrará | ||
</script> | ||
|
||
<section class="heading-section"> | ||
<div class="heading-container"> | ||
<h1>{title}</h1> | ||
</div> | ||
</section> | ||
|
||
<style> | ||
.heading-section { | ||
background-image: url("$lib/assets/forms/frame.svg"); /* Asegúrate de colocar la ruta correcta a tu SVG */ | ||
background-size: 100%; | ||
align-items: center; | ||
height: 25rem; | ||
display: flex; | ||
} | ||
.heading-container { | ||
color: black; /* Cambia a blanco si lo necesitas */ | ||
margin-left: 10%; | ||
} | ||
h1 { | ||
font-size: 3rem; | ||
font-weight: bold; | ||
} | ||
</style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters