| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293 |
- <template>
- <div :class="'logo-container-' + layout">
- <router-link to="/">
- <vab-remix-icon v-if="logo" class="logo" :icon-class="logo" />
- <span
- class="title"
- :class="{ 'hidden-xs-only': layout === 'horizontal' }"
- :title="title"
- >
- {{ title }}
- </span>
- </router-link>
- </div>
- </template>
- <script>
- import { mapGetters } from "vuex";
- import { logo } from "@/config/settings";
- export default {
- name: "Logo",
- data() {
- return {
- title: this.$baseTitle,
- };
- },
- computed: {
- ...mapGetters({
- logo: "settings/logo",
- layout: "settings/layout",
- }),
- },
- };
- </script>
- <style lang="scss" scoped>
- @mixin container {
- position: relative;
- height: $base-top-bar-height;
- overflow: hidden;
- line-height: $base-top-bar-height;
- background: $base-menu-background;
- }
- @mixin logo {
- display: inline-block;
- width: 32px;
- height: 32px;
- margin-right: 5px;
- color: $base-title-color;
- vertical-align: middle;
- }
- @mixin title {
- display: inline-block;
- overflow: hidden;
- font-size: 20px;
- font-weight: 600;
- line-height: 55px;
- color: $base-title-color;
- text-overflow: ellipsis;
- white-space: nowrap;
- vertical-align: middle;
- }
- .logo-container-horizontal {
- @include container;
- .logo {
- @include logo;
- }
- .title {
- @include title;
- }
- }
- .logo-container-vertical {
- @include container;
- height: $base-logo-height;
- line-height: $base-logo-height;
- text-align: center;
- .logo {
- @include logo;
- }
- .title {
- @include title;
- max-width: calc(#{$base-left-menu-width} - 60px);
- }
- }
- </style>
|