mirror of
https://github.com/0xJacky/nginx-ui.git
synced 2025-05-12 10:55:51 +02:00
40 lines
761 B
Vue
40 lines
761 B
Vue
<script setup lang="ts">
|
|
import logo from '@/assets/img/logo.png'</script>
|
|
|
|
<template>
|
|
<div class="logo">
|
|
<img :src="logo" alt="logo"/>
|
|
<p class="text">Nginx UI</p>
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="less" scoped>
|
|
.dark {
|
|
.logo {
|
|
background-color: transparent;
|
|
-webkit-box-shadow: 1px 1px 0 0 #404040;
|
|
box-shadow: 1px 1px 0 0 #404040;
|
|
}
|
|
}
|
|
|
|
.logo {
|
|
-webkit-box-shadow: 1px 1px 0 0 #e8e8e8;
|
|
box-shadow: 1px 1px 0 0 #e8e8e8;
|
|
transition: all 0.3s;
|
|
height: 64px;
|
|
width: 100%;
|
|
overflow: hidden;
|
|
background-color: #ffffff;
|
|
|
|
img {
|
|
height: 46px;
|
|
}
|
|
|
|
p.text {
|
|
margin: 0;
|
|
font-size: 22px;
|
|
line-height: 48px;
|
|
height: 48px;
|
|
}
|
|
}
|
|
</style>
|