LPT: injected components won't get CSS styles if you don't include them in manifest.json
This commit is contained in:
parent
4635dc4eec
commit
12b15c58f8
@ -1,5 +1,5 @@
|
||||
<template>
|
||||
<div v-if="showNotification" class="root-window flex flex-column overflow-hidden">
|
||||
<div v-if="showNotification" class="uw-ultrawidify-container flex flex-column overflow-hidden">
|
||||
<div class="notification-popup flex flex-row">
|
||||
<div v-if="notificationIcon" class="flex-nogrow flex-noshrink notification-icon">
|
||||
<Icon
|
||||
@ -116,22 +116,22 @@ export default {
|
||||
@import '../res/css/font/overpass-mono.css';
|
||||
@import '../res/css/common.scss';
|
||||
|
||||
.root-window {
|
||||
.uw-ultrawidify-container {
|
||||
position: relative;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.notification-popup {
|
||||
position: absolute;
|
||||
z-index: 99999999;
|
||||
background-color: rgba(0,0,0,0.88);
|
||||
top: 2rem;
|
||||
left: 2rem;
|
||||
width: 15rem;
|
||||
color: #fff;
|
||||
}
|
||||
.notification-icon {
|
||||
font-size: 3rem;
|
||||
.notification-popup {
|
||||
position: absolute;
|
||||
z-index: 99999999;
|
||||
background-color: rgba(108, 55, 12, 0.779);
|
||||
top: 2rem;
|
||||
left: 2rem;
|
||||
width: 15rem;
|
||||
color: #fff;
|
||||
}
|
||||
.notification-icon {
|
||||
font-size: 3rem;
|
||||
}
|
||||
}
|
||||
</style>
|
@ -23,7 +23,8 @@
|
||||
"ext/uw.js"
|
||||
],
|
||||
"css": [
|
||||
"ext/uw-ui.css"
|
||||
"ext/uw-ui.css",
|
||||
"ext/uw.css"
|
||||
],
|
||||
"all_frames": true
|
||||
}],
|
||||
|
Loading…
Reference in New Issue
Block a user