Final rewordings, postgres.ssl, dark/light icon + dir based titles.

This commit is contained in:
qtchaos
2024-01-02 04:13:28 +02:00
parent 927b23873f
commit f6de7b2240
21 changed files with 87 additions and 65 deletions

View File

@@ -0,0 +1,16 @@
<template>
<img src="/icon-light.png" alt="Logo of movie-web" class="img-dark" />
<img src="/icon-dark.png" alt="Logo of movie-web" class="img-light" />
</template>
<style scoped>
img {
height: 30px;
}
.light .img-dark {
display: none;
}
.dark .img-light {
display: none;
}
</style>