Skip to content

Commit

Permalink
added contacts & made app section slimmer
Browse files Browse the repository at this point in the history
  • Loading branch information
CuriousCI committed Feb 16, 2023
1 parent f85081e commit ecb774e
Show file tree
Hide file tree
Showing 14 changed files with 692 additions and 322 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -418,6 +418,15 @@ video {
.mb-10{
margin-bottom: 2.5rem;
}
.mb-2{
margin-bottom: 0.5rem;
}
.mb-3{
margin-bottom: 0.75rem;
}
.mb-6{
margin-bottom: 1.5rem;
}
.flex{
display: flex;
}
Expand All @@ -427,9 +436,6 @@ video {
.contents{
display: contents;
}
.hidden{
display: none;
}
.h-8{
height: 2rem;
}
Expand All @@ -455,6 +461,9 @@ video {
.w-full{
width: 100%;
}
.flex-col{
flex-direction: column;
}
.flex-wrap{
flex-wrap: wrap;
}
Expand All @@ -464,8 +473,8 @@ video {
.items-center{
align-items: center;
}
.justify-start{
justify-content: flex-start;
.justify-center{
justify-content: center;
}
.justify-between{
justify-content: space-between;
Expand Down Expand Up @@ -512,6 +521,14 @@ video {
font-size: 1.5rem;
line-height: 2rem;
}
.text-3xl{
font-size: 1.875rem;
line-height: 2.25rem;
}
.text-4xl{
font-size: 2.25rem;
line-height: 2.5rem;
}
.text-5xl{
font-size: 3rem;
line-height: 1;
Expand Down Expand Up @@ -560,9 +577,6 @@ h2 {
}
}
@media (min-width: 768px){
.md\:visible{
visibility: visible;
}
.md\:h-20{
height: 5rem;
}
Expand All @@ -572,6 +586,9 @@ h2 {
.md\:w-\[48\%\]{
width: 48%;
}
.md\:justify-start{
justify-content: flex-start;
}
.md\:text-6xl{
font-size: 3.75rem;
line-height: 1;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { _ } from "./_layout-324900b4.js";
import { default as default2 } from "../components/pages/_layout.svelte-af9aee54.js";
import { default as default2 } from "../components/pages/_layout.svelte-f332d2d2.js";
export {
default2 as component,
_ as universal
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { default as default2 } from "../components/error.svelte-8ff3e056.js";
import { default as default2 } from "../components/error.svelte-8a09f666.js";
export {
default2 as component
};
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { default as default2 } from "../components/pages/_page.svelte-dbaad46e.js";
import { default as default2 } from "../components/pages/_page.svelte-23846625.js";
export {
default2 as component
};
Original file line number Diff line number Diff line change
Expand Up @@ -185,6 +185,12 @@ function detach(node) {
node.parentNode.removeChild(node);
}
}
function destroy_each(iterations, detaching) {
for (let i = 0; i < iterations.length; i += 1) {
if (iterations[i])
iterations[i].d(detaching);
}
}
function element(name) {
return document.createElement(name);
}
Expand Down Expand Up @@ -562,6 +568,7 @@ export {
append_hydration as H,
component_subscribe as I,
src_url_equal as J,
destroy_each as K,
SvelteComponent as S,
space as a,
insert_hydration as b,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { C as noop, s as safe_not_equal } from "./index-4506c01f.js";
import { C as noop, s as safe_not_equal } from "./index-2f3863e0.js";
const subscriber_queue = [];
function writable(value, start = noop) {
let stop;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { S as SvelteComponent, i as init, s as safe_not_equal, k as element, q as text, a as space, l as claim_element, m as children, r as claim_text, h as detach, c as claim_space, b as insert_hydration, H as append_hydration, u as set_data, C as noop, I as component_subscribe } from "../chunks/index-4506c01f.js";
import { s as stores } from "../chunks/singletons-b41b708a.js";
import { S as SvelteComponent, i as init, s as safe_not_equal, k as element, q as text, a as space, l as claim_element, m as children, r as claim_text, h as detach, c as claim_space, b as insert_hydration, H as append_hydration, u as set_data, C as noop, I as component_subscribe } from "../chunks/index-2f3863e0.js";
import { s as stores } from "../chunks/singletons-95c5733a.js";
const getStores = () => {
const stores$1 = stores;
return {
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { S as SvelteComponent, i as init, s as safe_not_equal, D as create_slot, E as update_slot_base, F as get_all_dirty_from_scope, G as get_slot_changes, f as transition_in, t as transition_out } from "../../chunks/index-4506c01f.js";
import { S as SvelteComponent, i as init, s as safe_not_equal, D as create_slot, E as update_slot_base, F as get_all_dirty_from_scope, G as get_slot_changes, f as transition_in, t as transition_out } from "../../chunks/index-2f3863e0.js";
const app = "";
function create_fragment(ctx) {
let current;
Expand Down
Loading

0 comments on commit ecb774e

Please sign in to comment.