Skip to content

Commit 18b2ec2

Browse files
committed
Progress
1 parent 0207660 commit 18b2ec2

File tree

3 files changed

+15
-7
lines changed

3 files changed

+15
-7
lines changed

loama/src/App.vue

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,14 @@ h1 {
1717
}
1818
1919
h2 {
20+
color: var(--Solid-Purple);
21+
font-family: "JetBrains Mono";
22+
font-style: normal;
23+
font-weight: 700;
24+
line-height: normal;
25+
}
26+
27+
h3 {
2028
font-family: "JetBrains Mono";
2129
font-size: calc(var(--base-unit)*4);
2230
font-style: normal;

loama/src/components/InfoPopup.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<template>
22
<div>
3-
<h2>Solid Pod URL</h2>
3+
<h3>Solid Pod URL</h3>
44
<p>A URL that links to the pod that you want to use.</p>
55
<aside>
66
<PhQuestion :size="24" />In order to authenticate, you'll be redirected to the provider's website.

loama/src/components/SidePanel.vue

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<div class="extra-panel" v-if="isOpen">
33
<div>
44
<h2>No Pod yet?</h2>
5-
<p>No worries, you can create a pod with a pod provider or even host one yourself! We'll give you some
5+
<p>No worries, you can create a pod with a pod provider or even <u>host one</u> yourself! We'll give you some
66
recommendations of hosts you can use:</p>
77
<button v-for="pod in podListData" :key="pod.name" @click="openPodUrl(pod)" :aria-label="'Open ' + pod.name">
88
{{ pod.name }}
@@ -40,20 +40,20 @@ const openPodUrl = (pod: { name: string; url: string }) => {
4040
margin-top: 10px;
4141
}
4242
43-
.extra-panel h2 {
43+
h2 {
4444
font-size: 30px;
4545
margin-bottom: 20px;
4646
}
4747
48-
.extra-panel p {
48+
p {
4949
margin-bottom: 30px;
5050
}
5151
52-
.extra-panel>div {
52+
div {
5353
margin-bottom: 20px;
5454
}
5555
56-
.extra-panel button {
56+
button {
5757
display: block;
5858
margin-bottom: 10px;
5959
padding: 10px;
@@ -65,7 +65,7 @@ const openPodUrl = (pod: { name: string; url: string }) => {
6565
border-radius: 5px;
6666
}
6767
68-
.extra-panel button:hover {
68+
button:hover {
6969
background-color: #29487d;
7070
}
7171

0 commit comments

Comments
 (0)