mirror of
https://github.com/movie-web/docs.git
synced 2025-09-13 07:03:27 +00:00
Final rewordings, postgres.ssl
, dark/light icon + dir based titles.
This commit is contained in:
@@ -1,3 +0,0 @@
|
||||
<template>
|
||||
<img src="/icon.png" alt="Logo of movie-web" />
|
||||
</template>
|
16
components/global/Logo.vue
Normal file
16
components/global/Logo.vue
Normal 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>
|
Reference in New Issue
Block a user