Skip to content

Commit 350945b

Browse files
committed
feat: Update favicon and Butter yellow colour
1 parent 5f47eba commit 350945b

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

index.html

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
<html lang="en-GB">
33
<head>
44
<meta charset="UTF-8">
5-
<link rel="icon" href="/favicon.ico">
5+
<link rel="shortcut icon" href="/favicon.ico" type="image/x-icon">
6+
<link rel="icon" href="/favicon.png" type="image/png">
67
<meta name="viewport" content="width=device-width, initial-scale=1.0, viewport-fit=cover">
78
<title>Butter CMS Utilities</title>
89
<meta name="description" content="Unofficial client-side utilities for Butter CMS - helpful tools that run entirely in your browser">
9-
<link rel="icon" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>🧈</text></svg>">
1010
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css">
1111
<style>.github-corner:hover .octo-arm{animation:octocat-wave 560ms ease-in-out}@keyframes octocat-wave{0%,100%{transform:rotate(0)}20%,60%{transform:rotate(-25deg)}40%,80%{transform:rotate(10deg)}}@media (max-width:500px){.github-corner:hover .octo-arm{animation:none}.github-corner .octo-arm{animation:octocat-wave 560ms ease-in-out}}</style>
1212
</head>

public/favicon.ico

4.19 KB
Binary file not shown.

public/favicon.png

37.5 KB
Loading

src/assets/styles/_colors.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
:root {
2-
--butter-yellow: #fdb714;
2+
--butter-yellow: #fdc824;
33
--butter-dark: #1d2939;
44
--butter-gray: #475467;
55
--butter-light-gray: #f9fafb;

src/components/Header.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<template>
22
<header class="header">
33
<div class="header__content">
4-
<h1>🧈 Butter CMS Utilities</h1>
4+
<h1><img src="/favicon.png" alt="" width="36" height="36" /> Butter CMS Utilities</h1>
55
<p>Unofficial client-side tools for Butter CMS</p>
66
<p style="font-size: 0.875rem">I can't believe it's not Butter CMS!</p>
77
</div>
@@ -10,7 +10,7 @@
1010

1111
<style lang="scss">
1212
.header {
13-
background: linear-gradient(135deg, var(--butter-yellow) 0%, #ffa500 100%);
13+
background: var(--butter-yellow);
1414
color: var(--butter-dark);
1515
padding: 1.5rem 1rem;
1616
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);

0 commit comments

Comments
 (0)