Compare commits

...

2 commits

Author SHA1 Message Date
e115ee0194 Fix frontend app
Some checks failed
ci/woodpecker/push/build Pipeline failed
2023-07-10 18:30:56 +02:00
f86cb57707 Move Dockerfile 2023-07-10 18:29:40 +02:00
6 changed files with 8 additions and 7 deletions

View file

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

View file

@ -98,7 +98,7 @@
flex: 0 1 20%;
border-top-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-size: cover;
}

View file

@ -3,7 +3,7 @@
<head>
<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">
<link rel="manifest" href="/manifest.json">
<title>Pianello</title>

View file

@ -46,7 +46,7 @@
flex: 0 1 20%;
border-top-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-size: cover;
}

View file

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