12345678910111213141516171819202122232425262728293031323334353637383940 |
- <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>
|