Skip to content

Commit

Permalink
Styling
Browse files Browse the repository at this point in the history
  • Loading branch information
lassebomh committed Oct 14, 2022
1 parent f59d77d commit f35e268
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "lenked-extension",
"name": "more-rich-results",
"private": true,
"version": "0.0.0",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion src/manifest.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { defineManifest } from '@crxjs/vite-plugin'
export default defineManifest({
name: 'Stack Overflow & Reddit in Google',
description: "",
version: '0.0.0',
version: '1.0.0',
manifest_version: 3,
background: {
service_worker: 'src/background/main.ts',
Expand Down
2 changes: 1 addition & 1 deletion src/richresults/reddit/Comments.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</script>

<div class="flex justify-start items-start flex-col gap-2">
<div class="flex justify-start items-start flex-col text-[0.9em] gap-2">
{#each comments as comment}
{#if comment.data.author}
<Comment {comment} {post} />
Expand Down
2 changes: 1 addition & 1 deletion src/richresults/reddit/Component.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
{:then _}
<div>
<div class="ml-2">
<div class="flex justify-start items-center gap-4 py-1 opacity-75">
<div class="flex justify-start items-center text-[0.9em] gap-4 py-1 opacity-75">
<div>
Posted by
<a href={"https://www.reddit.com/user/"+post.author} class="text-[inherit]">u/{post.author}</a>
Expand Down
4 changes: 2 additions & 2 deletions src/richresults/stackexchange/Component.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<a href={question.link}><h1 class="text-2xl">
{@html question.title}
</h1></a>
<div class="flex justify-start items-center gap-3 py-1 opacity-75">
<div class="flex justify-start items-center text-[0.9em] gap-3 py-1 opacity-75">
<div>
<span>Viewed</span> {prettifyNumber(question.view_count)} times
</div>
Expand All @@ -61,7 +61,7 @@
</button>
{/if}
<div style="border-color: rgba(var(--mrr-color), 0.1)" class="border border-solid rounded px-3 pt-2 mb-4">
<div class="flex justify-start items-center gap-3">
<div class="flex justify-start items-center text-[0.9em] gap-3">
<div class="opacity-75">
Score {prettifyNumber(answer.score)}
</div>
Expand Down

0 comments on commit f35e268

Please sign in to comment.