fixed app not loading when opening as file
This commit is contained in:
parent
2a2d5f404e
commit
766128d2eb
10
css/main.css
10
css/main.css
@ -454,6 +454,11 @@ ol li::before {
|
|||||||
margin-bottom: 0.2rem;
|
margin-bottom: 0.2rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.button--primary .ripple,
|
||||||
|
.button--danger .ripple {
|
||||||
|
background: radial-gradient(circle, rgba(var(--background-color), 0.3) 0%, rgba(0, 0, 0, 0) 50%);
|
||||||
|
}
|
||||||
|
|
||||||
.ripple {
|
.ripple {
|
||||||
height: 8rem;
|
height: 8rem;
|
||||||
width: 8rem;
|
width: 8rem;
|
||||||
@ -464,11 +469,6 @@ ol li::before {
|
|||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
}
|
}
|
||||||
|
|
||||||
.button--primary .ripple,
|
|
||||||
.button--danger .ripple {
|
|
||||||
background: radial-gradient(circle, rgba(var(--background-color), 0.3) 0%, rgba(0, 0, 0, 0) 50%);
|
|
||||||
}
|
|
||||||
|
|
||||||
.interact {
|
.interact {
|
||||||
position: relative;
|
position: relative;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
|||||||
2
css/main.min.css
vendored
2
css/main.min.css
vendored
File diff suppressed because one or more lines are too long
@ -414,6 +414,16 @@ ol {
|
|||||||
margin-bottom: 0.2rem;
|
margin-bottom: 0.2rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.button--primary,
|
||||||
|
.button--danger {
|
||||||
|
.ripple {
|
||||||
|
background: radial-gradient(
|
||||||
|
circle,
|
||||||
|
rgba(var(--background-color), 0.3) 0%,
|
||||||
|
rgba(0, 0, 0, 0) 50%
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
.ripple {
|
.ripple {
|
||||||
height: 8rem;
|
height: 8rem;
|
||||||
width: 8rem;
|
width: 8rem;
|
||||||
@ -427,16 +437,6 @@ ol {
|
|||||||
);
|
);
|
||||||
pointer-events: none;
|
pointer-events: none;
|
||||||
}
|
}
|
||||||
.button--primary,
|
|
||||||
.button--danger {
|
|
||||||
.ripple {
|
|
||||||
background: radial-gradient(
|
|
||||||
circle,
|
|
||||||
rgba(var(--background-color), 0.3) 0%,
|
|
||||||
rgba(0, 0, 0, 0) 50%
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
.interact {
|
.interact {
|
||||||
position: relative;
|
position: relative;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
|||||||
@ -495,7 +495,9 @@
|
|||||||
<sm-switch id="flo_id_visibility_switcher">
|
<sm-switch id="flo_id_visibility_switcher">
|
||||||
<div class="flex flex-direction-column gap-0-3" slot="left">
|
<div class="flex flex-direction-column gap-0-3" slot="left">
|
||||||
<b>FLO ID visibility</b>
|
<b>FLO ID visibility</b>
|
||||||
Don't show my FLO ID on homepage. *Only applies to this device.
|
<p>
|
||||||
|
Don't show my FLO ID on homepage. *Only applies to this device.
|
||||||
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</sm-switch>
|
</sm-switch>
|
||||||
<sm-button class="danger justify-self-start" onclick="signOut()">Sign out</sm-button>
|
<sm-button class="danger justify-self-start" onclick="signOut()">Sign out</sm-button>
|
||||||
@ -1244,7 +1246,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</li>
|
</li>
|
||||||
</template>
|
</template>
|
||||||
<script src="//unpkg.com/uhtml"></script>
|
<script src="https://unpkg.com/uhtml@3.0.1/es.js"></script>
|
||||||
<script src="scripts/components.js"></script>
|
<script src="scripts/components.js"></script>
|
||||||
<script src="scripts/std_ui.js"></script>
|
<script src="scripts/std_ui.js"></script>
|
||||||
<script src="scripts/lib.js"></script>
|
<script src="scripts/lib.js"></script>
|
||||||
|
|||||||
@ -2,7 +2,6 @@
|
|||||||
// Global variables
|
// Global variables
|
||||||
const { html, render: renderElem } = uhtml;
|
const { html, render: renderElem } = uhtml;
|
||||||
const domRefs = {};
|
const domRefs = {};
|
||||||
const currentYear = new Date().getFullYear();
|
|
||||||
let paymentsHistoryLoader = null;
|
let paymentsHistoryLoader = null;
|
||||||
let walletHistoryLoader = null;
|
let walletHistoryLoader = null;
|
||||||
let contactHistoryLoader = null;
|
let contactHistoryLoader = null;
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user