Prevent page css from effecting CSS of notification popups (...ish)

This commit is contained in:
Tamius Han 2020-12-13 02:03:17 +01:00
parent c05eed44f0
commit cd26a1ceed
2 changed files with 14 additions and 1 deletions

View File

@ -140,6 +140,7 @@ export default {
</script> </script>
<style lang="scss" scoped> <style lang="scss" scoped>
@import '../res/css/uwui-base.scss';
@import '../res/css/colors.scss'; @import '../res/css/colors.scss';
@import '../res/css/font/overpass.css'; @import '../res/css/font/overpass.css';
@import '../res/css/font/overpass-mono.css'; @import '../res/css/font/overpass-mono.css';
@ -151,7 +152,13 @@ export default {
height: 100%; height: 100%;
pointer-events: none; pointer-events: none;
font-size: 16px; display: block !important;
position: relative !important;
width: 100% !important;
height: 100% !important;
pointer-events: none !important;
font-size: 16px !important;
.notification-popup { .notification-popup {
pointer-events: auto !important; pointer-events: auto !important;

View File

@ -0,0 +1,6 @@
.uw-ultrawidify-container-root {
all: initial;
* {
all: unset;
}
}