Update favicon, enhance sidebar branding, and improve CSS styles
- Replaced the favicon with a new app icon and added a shortcut icon for better branding. - Enhanced the sidebar branding in ChatView.vue by introducing a logo element for improved visual appeal. - Updated CSS styles to support new sidebar layout and icon display, ensuring a cohesive design. These changes collectively improve the user interface and branding consistency across the application.
@@ -28,8 +28,10 @@
|
|||||||
<!-- Canonical URL -->
|
<!-- Canonical URL -->
|
||||||
<link rel="canonical" href="https://www.ypchat.net/">
|
<link rel="canonical" href="https://www.ypchat.net/">
|
||||||
|
|
||||||
<!-- Favicon -->
|
<!-- App Icon / Favicon -->
|
||||||
<link rel="icon" type="image/png" href="/static/favicon.png">
|
<link rel="icon" type="image/x-icon" href="/favicon.ico">
|
||||||
|
<link rel="shortcut icon" href="/favicon.ico">
|
||||||
|
<link rel="icon" type="image/png" href="/appicon.png">
|
||||||
<script type="application/ld+json" id="seo-json-ld">{"@context":"https://schema.org","@type":"WebSite","name":"SingleChat","url":"https://www.ypchat.net/","description":"Willkommen auf SingleChat - deine erste Adresse für Chat, Single-Chat und Bildaustausch.","inLanguage":"de-DE"}</script>
|
<script type="application/ld+json" id="seo-json-ld">{"@context":"https://schema.org","@type":"WebSite","name":"SingleChat","url":"https://www.ypchat.net/","description":"Willkommen auf SingleChat - deine erste Adresse für Chat, Single-Chat und Bildaustausch.","inLanguage":"de-DE"}</script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|||||||
BIN
client/public/appicon.png
Normal file
|
After Width: | Height: | Size: 985 KiB |
BIN
client/public/favicon.ico
Normal file
|
After Width: | Height: | Size: 7.4 KiB |
|
Before Width: | Height: | Size: 8.0 KiB After Width: | Height: | Size: 1.1 MiB |
BIN
client/public/image_old.png
Normal file
|
After Width: | Height: | Size: 8.0 KiB |
|
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 918 KiB |
BIN
client/public/smileys_old.png
Normal file
|
After Width: | Height: | Size: 2.2 KiB |
@@ -61,6 +61,19 @@
|
|||||||
color: #173a27;
|
color: #173a27;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.sidebar-brand-head {
|
||||||
|
display: flex;
|
||||||
|
align-items: center;
|
||||||
|
gap: 8px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.sidebar-brand-mark {
|
||||||
|
width: 26px;
|
||||||
|
height: 26px;
|
||||||
|
border-radius: 7px;
|
||||||
|
flex-shrink: 0;
|
||||||
|
}
|
||||||
|
|
||||||
.sidebar-brand strong {
|
.sidebar-brand strong {
|
||||||
display: block;
|
display: block;
|
||||||
font-size: 16px;
|
font-size: 16px;
|
||||||
@@ -309,12 +322,11 @@ a {
|
|||||||
width: 32px;
|
width: 32px;
|
||||||
height: 32px;
|
height: 32px;
|
||||||
border-radius: 9px;
|
border-radius: 9px;
|
||||||
display: grid;
|
display: inline-block;
|
||||||
place-items: center;
|
background: url('/appicon.png') center / cover no-repeat;
|
||||||
background: linear-gradient(180deg, #3d8654 0%, #245c3a 100%);
|
color: transparent;
|
||||||
color: #fff;
|
font-size: 0;
|
||||||
font-weight: 700;
|
box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
|
||||||
box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.app-brand-copy {
|
.app-brand-copy {
|
||||||
|
|||||||
@@ -4,7 +4,10 @@
|
|||||||
<div class="auth-main-layout">
|
<div class="auth-main-layout">
|
||||||
<aside class="app-sidebar">
|
<aside class="app-sidebar">
|
||||||
<div class="sidebar-brand">
|
<div class="sidebar-brand">
|
||||||
|
<div class="sidebar-brand-head">
|
||||||
|
<span class="app-brand-mark sidebar-brand-mark" aria-hidden="true">S</span>
|
||||||
<strong>SingleChat</strong>
|
<strong>SingleChat</strong>
|
||||||
|
</div>
|
||||||
<span>Online Chat</span>
|
<span>Online Chat</span>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|||||||