Skip to content

Commit

Permalink
Merge branch 'hotfix'
Browse files Browse the repository at this point in the history
  • Loading branch information
mvilella committed Apr 20, 2021
2 parents f79d4ba + 82d14e5 commit 44f69be
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 deletions.
8 changes: 6 additions & 2 deletions src/App.vue
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
<template>
<div id="app">
<div id="app" :class="env">
<router-view />
</div>
</template>

<script>
const env = process.env.NODE_ENV;
export default {
name: 'App',
components: {},
data() {
return { env };
},
};
</script>
1 change: 1 addition & 0 deletions src/styles/components/_super-card.scss
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
position: relative;
height: 100%;
width: 100%;
overflow: hidden;

.cover {
video,
Expand Down
5 changes: 5 additions & 0 deletions src/styles/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ body {
height: 100%;
}

.production {
cursor: none;
}

button {
appearance: none;
border: none;
Expand All @@ -39,6 +43,7 @@ button {
text-decoration: none;
color: inherit;
z-index: 1;
outline: 0;
}

figure {
Expand Down
1 change: 0 additions & 1 deletion src/styles/views/_tour.scss
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@
&__overlay {
position: relative;
height: 100vh;
padding: 1px;

header {
padding: 4rem;
Expand Down

0 comments on commit 44f69be

Please sign in to comment.