Skip to content
This repository was archived by the owner on Feb 19, 2025. It is now read-only.

Commit

Permalink
Better(?) icons
Browse files Browse the repository at this point in the history
  • Loading branch information
Jaezmien committed Jul 5, 2022
1 parent 1824893 commit 05a135a
Show file tree
Hide file tree
Showing 17 changed files with 66 additions and 36 deletions.
Binary file modified public/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/favicon.ico
Binary file not shown.
Binary file modified public/icons/favicon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/icons/favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file removed public/icons/favicon.png
Binary file not shown.
Binary file added public/icons/mstile-144x144.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/icons/mstile-150x150.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/icons/mstile-310x150.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/icons/mstile-310x310.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/icons/mstile-70x70.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/icons/pwa-192x192.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/icons/pwa-512x512.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file modified public/icons/pwa-72x72.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
49 changes: 37 additions & 12 deletions public/icons/safari-pinned-tab.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
14 changes: 0 additions & 14 deletions public/icons/site.webmanifest

This file was deleted.

32 changes: 27 additions & 5 deletions src/components/Bookshelf.vue
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
<script setup lang="ts">
import FeatherIcon from '@/components/FeatherIcon.vue'
defineProps({
clickable: {
type: Boolean,
Expand All @@ -15,8 +13,23 @@ defineEmits(['book:click'])
<div :class="{ clickable }"
@click="() => clickable && $emit('book:click')">
<div>
<FeatherIcon :icon="'book'"
:size="'3rem'"></FeatherIcon>
<svg version="1.1"
style="fill:none; stroke:currentColor;"
viewBox="0 0 135 135"
id="header-icon"
xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
xmlns="http://www.w3.org/2000/svg"
xmlns:svg="http://www.w3.org/2000/svg">
<defs id="defs12" />
<path style="fill:none;stroke-width:15px;stroke-linecap:round;stroke-linejoin:round"
d="" />
<path style="fill:none;stroke-width:15px;stroke-linecap:round;stroke-linejoin:round"
d="" />
<path style="fill:none;stroke-width:15px;stroke-linecap:square;stroke-linejoin:round"
d="m 127.5,7.5 q -60,0 -60,60 0,60 -60,60 m 0,-60 v 0 -60 m 120,60 v 0 60 m -90,-120 v 0 30 m 60,60 v 0 30 m -60,-60 a 30,30 0 0 1 -30,30 m 90,-30 a 30,30 0 0 1 30,-30" />
</svg>

<h1 id="header">Bookshelf</h1>
</div>
</div>
Expand All @@ -41,13 +54,22 @@ defineEmits(['book:click'])
font-size: 3rem;
margin: 0;
margin-left: 0.5rem;
margin-left: 1rem;
@media screen and (max-width: 25rem) {
font-size: 2rem;
}
}
#header-icon {
width: 4rem;
height: 4rem;
@media screen and (max-width: 25rem) {
width: 3rem;
height: 3rem;
}
}
}
}
Expand Down
7 changes: 2 additions & 5 deletions src/components/Notifications/style.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,3 @@
$BACKGROUND: #1f2229;
$TEXT: #eeeeee;

#book-notifications {
position: fixed;
bottom: 1rem;
Expand All @@ -17,8 +14,8 @@ $TEXT: #eeeeee;
padding: 1rem;
border-radius: 0.5rem;

background: $TEXT !important;
color: $BACKGROUND !important;
background: #eeeeee !important;
color: #1f2229 !important;

max-width: 80vw;
width: fit-content;
Expand Down

0 comments on commit 05a135a

Please sign in to comment.