Fix frontend app
Some checks failed
ci/woodpecker/push/build Pipeline failed

This commit is contained in:
Alessio Davoli 2023-07-10 18:30:56 +02:00
parent f86cb57707
commit e115ee0194
5 changed files with 8 additions and 7 deletions

View file

@ -49,6 +49,11 @@
.bold { .bold {
font-weight: bold; font-weight: bold;
} }
@font-face {
font-family: 'Roboto-Regular';
src: url('/fonts/roboto/Roboto-Regular.ttf') format('TrueType');
}
</style> </style>
<body data-sveltekit-preload-data="hover"> <body data-sveltekit-preload-data="hover">

View file

@ -98,7 +98,7 @@
flex: 0 1 20%; flex: 0 1 20%;
border-top-right-radius: var(--route-card-radius); border-top-right-radius: var(--route-card-radius);
border-bottom-right-radius: var(--route-card-radius); border-bottom-right-radius: var(--route-card-radius);
background-image: url('../../static/images/test-1.jpg'); background-image: url('/images/test-1.jpg');
background-position: center; background-position: center;
background-size: cover; background-size: cover;
} }

View file

@ -3,7 +3,7 @@
<head> <head>
<meta charset="utf-8"> <meta charset="utf-8">
<link rel="icon" href="/static/images/home-icon.png"> <link rel="icon" href="/images/home-icon.png">
<meta name="viewport" content="width=device-width"> <meta name="viewport" content="width=device-width">
<link rel="manifest" href="/manifest.json"> <link rel="manifest" href="/manifest.json">
<title>Pianello</title> <title>Pianello</title>

View file

@ -46,7 +46,7 @@
flex: 0 1 20%; flex: 0 1 20%;
border-top-right-radius: var(--route-card-radius); border-top-right-radius: var(--route-card-radius);
border-bottom-right-radius: var(--route-card-radius); border-bottom-right-radius: var(--route-card-radius);
background-image: url('../../static/images/test-1.jpg'); background-image: url('/images/test-1.jpg');
background-position: center; background-position: center;
background-size: cover; background-size: cover;
} }

View file

@ -1,5 +1 @@
@font-face {
font-family: 'Roboto-Regular';
src: url('../../static/fonts/roboto/Roboto-Regular.ttf') format('TrueType');
}