aboutsummaryrefslogtreecommitdiff
path: root/extension/src/entries/contentScript/primary/style.scss
blob: e2c391dfc45728ce6a57fc11b686743bf85242a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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-3 py-2;

        .notification-title{
            @apply text-base font-bold;
        }

        .notification-content{
            @apply text-sm;
        }
    }
}