Skip to content

Commit 494666c

Browse files
committed
Make sure all windows are transparent by default
1 parent 3733770 commit 494666c

File tree

4 files changed

+13
-4
lines changed

4 files changed

+13
-4
lines changed

presenter-app/src/assets/scss/plodo.scss

+7-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,13 @@ $link-focus-border: $secondary;
5959
$card-shadow: 0 0.5em 1em -0.125em rgba($primary, 0.1), 0 0px 0 1px rgba($primary, 0.02);
6060

6161
$body-overflow-y: auto;
62-
$body-background-color: $white-bis;
62+
63+
// Make sure that window transparency is maintained
64+
$body-background-color: none!important;
65+
66+
html {
67+
background-color: none!important;
68+
}
6369

6470
.justify-content-center {
6571
justify-content: center;

presenter-app/src/components/SmileyCounter.vue

+2-1
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,8 @@ export default {
140140
}
141141
142142
.trend {
143-
margin-left: -1.5rem;
143+
position:relative;
144+
margin-left: -1rem;
144145
}
145146
146147
.smiley {

presenter-app/src/views/CelebrationScreen.vue

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ export default {
3232
this.unsubscribe();
3333
},
3434
mounted() {
35-
document.documentElement.style.background = "none";
36-
document.body.style.background = "none";
35+
// document.documentElement.style.background = "none";
36+
// document.body.style.background = "none";
3737
3838
this.two.appendTo(document.body);
3939

presenter-app/src/views/MainLayout.vue

+2
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,12 @@ export default {
2727
};
2828
</script>
2929
<style lang="scss" scoped>
30+
@import "~bulma/sass/utilities/_all";
3031
#app {
3132
display: flex;
3233
min-height: 100vh;
3334
flex-direction: column;
35+
background-color: $white-bis;
3436
}
3537
3638
.main-section {

0 commit comments

Comments
 (0)