aboutsummaryrefslogtreecommitdiff
path: root/extension/src/entries/contentScript/primary/style.scss
diff options
context:
space:
mode:
authorLibravatar vnugent <public@vaughnnugent.com>2023-11-23 12:44:53 -0500
committerLibravatar vnugent <public@vaughnnugent.com>2023-11-23 12:44:53 -0500
commit8434d8b8ecf54c6038a7e9ad7d57084a0865500c (patch)
tree719f5ee3beb9ea99c8d9e3d8e6279092f98e11ac /extension/src/entries/contentScript/primary/style.scss
parente272adcc3f32e31fe7668551453b8e34bc823c3e (diff)
fixed signing and working note encryption!
Diffstat (limited to 'extension/src/entries/contentScript/primary/style.scss')
-rw-r--r--extension/src/entries/contentScript/primary/style.scss11
1 files changed, 9 insertions, 2 deletions
diff --git a/extension/src/entries/contentScript/primary/style.scss b/extension/src/entries/contentScript/primary/style.scss
index bcdbbfd..e2c391d 100644
--- a/extension/src/entries/contentScript/primary/style.scss
+++ b/extension/src/entries/contentScript/primary/style.scss
@@ -1,15 +1,22 @@
#injected-root{
+
+ /* Reset all base fonts so host does not leak into shadow root */
+ @apply font-sans text-base;
.toaster{
@apply fixed top-10 right-2 z-[999999999] max-w-[250px];
}
.vue-notification-template.vue-notification.error{
- @apply bg-red-500 text-white px-4 py-2;
+ @apply bg-red-500 text-white px-3 py-2;
.notification-title{
-
+ @apply text-base font-bold;
+ }
+
+ .notification-content{
+ @apply text-sm;
}
}
} \ No newline at end of file