1
0
Fork 0
mirror of synced 2024-06-30 20:10:54 +12:00

Format and linting changes

This commit is contained in:
Joe 2020-05-26 09:14:40 +01:00
parent 939e2dc68c
commit 3be7182887
4 changed files with 16 additions and 16 deletions

View file

@ -28,4 +28,4 @@ export { default as CommunityIcon } from "./Community.svelte"
export { default as ContributionIcon } from "./Contribution.svelte"
export { default as BugIcon } from "./Bug.svelte"
export { default as EmailIcon } from "./Email.svelte"
export { default as TwitterIcon } from "./Twitter.svelte"
export { default as TwitterIcon } from "./Twitter.svelte"

View file

@ -2,10 +2,10 @@
import Button from "components/common/Button.svelte"
export let apps
function myFunction() {
var x = new Date(document.lastModified);
document.getElementById("demo").innerHTML = x;
}
function myFunction() {
var x = new Date(document.lastModified)
document.getElementById("demo").innerHTML = x
}
</script>
<div class="root">
@ -14,12 +14,17 @@ function myFunction() {
<div>
<div class="app-section-title">Your Web Apps</div>
{#each apps as app}
<div class="apps-card">
<div class="apps-card">
<h3 class="app-title">{app.name}</h3>
<p class="app-desc">A minimalist CRM which removes the noise and allows you to focus on your business. </p>
<p class="app-desc">
A minimalist CRM which removes the noise and allows you to focus
on your business.
</p>
<div class="card-footer">
<div class="modified-date">Last Edited - 25th May 2020</div>
<a href={`/_builder/${app._id}`} class="app-button">Open Web App</a>
<a href={`/_builder/${app._id}`} class="app-button">
Open Web App
</a>
</div>
</div>
{/each}
@ -73,7 +78,7 @@ function myFunction() {
.card-footer {
display: flex;
flex-direction: row;
align-items: baseline;
align-items: baseline;
justify-content: space-between;
}
@ -94,6 +99,4 @@ function myFunction() {
transition: all 0.2s;
box-sizing: border-box;
}
</style>

View file

@ -50,9 +50,6 @@
</div>
<style>
.switcher {
display: flex;
justify-content: space-between;

View file

@ -32,8 +32,8 @@
<button class="home-logo">
<img
src="/_builder/assets/bb-logo.svg"
alt="budibase icon"
on:click={() => $goto(`/`)}>
alt="budibase icon"
on:click={() => $goto(`/`)} />
</button>
<!-- This gets all indexable subroutes and sticks them in the top nav. -->