mirror of
https://github.com/movie-web/docs.git
synced 2025-09-13 07:23:27 +00:00
17 lines
294 B
Vue
17 lines
294 B
Vue
<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>
|