Skip to content

Commit c6b4390

Browse files
🌱 tipoEnFlujito
1 parent 65e0c80 commit c6b4390

File tree

4 files changed

+9
-1
lines changed

4 files changed

+9
-1
lines changed

recursos/fuentes/EnFlujoRegular.otf

679 KB
Binary file not shown.

recursos/fuentes/EnFlujoRegular.ttf

219 KB
Binary file not shown.

src/componentes/Menus.astro

+1-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ const rutaActual = Astro.url.pathname.slice(1).split('/');
111111
}
112112

113113
#menuPrincipal {
114-
font-family: $fuenteMono;
114+
font-family: $fuenteEnFlujo;
115115
z-index: 9999;
116116
&.abierto {
117117
.menuBtn {

src/scss/_constantes.scss

+8
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,15 @@
11
// Stacks de fuentes nativas a los diferentes sistemas para no cargar fuentes externas
22
// $fuentePrincipal: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell,
33
// 'Helvetica Neue', sans-serif;
4+
@font-face {
5+
font-family: 'EnFlujo';
6+
src: url('/fuentes/EnFlujoRegular.otf') format('truetype-variations');
7+
font-weight: 400;
8+
font-display: swap;
9+
}
10+
411
$fuenteMono: ibm-plex-mono, SFMono-Regular, Menlo, Monaco, Consolas, 'Liberation Mono', 'Courier New', monospace;
12+
$fuenteEnFlujo: EnFlujo, 'Liberation Mono', 'Courier New', monospace;
513
$fuentePrincipal: $fuenteMono;
614
$fuentePrincipalPeso: 400;
715
$fuentePrincipalBold: 700;

0 commit comments

Comments
 (0)