@axium/server 0.1.5 → 0.1.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@axium/server",
3
- "version": "0.1.5",
3
+ "version": "0.1.7",
4
4
  "author": "James Prevett <axium@jamespre.dev> (https://jamespre.dev)",
5
5
  "funding": {
6
6
  "type": "individual",
@@ -17,16 +17,16 @@
17
17
  <div id="content">
18
18
  <img id="pfp" src={image} alt="User profile" />
19
19
  <p id="greeting">Welcome, {user.name}</p>
20
- <div class="main">
20
+ <div class="account-section main">
21
21
  <div>
22
22
  <p>Name</p>
23
23
  <p>{user.name}</p>
24
- <a href="/name"><Icon id="chevron-right" /></a>
24
+ <a href="name"><Icon id="chevron-right" /></a>
25
25
  </div>
26
26
  <div>
27
27
  <p>Email</p>
28
28
  <p>{user.email}</p>
29
- <a href="/email"><Icon id="chevron-right" /></a>
29
+ <a href="email"><Icon id="chevron-right" /></a>
30
30
  </div>
31
31
  <div>
32
32
  <p>User ID <dfn title="This is your UUID."><Icon id="regular/circle-info" /></dfn></p>
@@ -57,7 +57,7 @@
57
57
  margin-bottom: 1em;
58
58
  }
59
59
 
60
- .main {
60
+ :global(.account-section) {
61
61
  width: 50%;
62
62
  padding-top: 4em;
63
63
 
@@ -66,7 +66,7 @@
66
66
  }
67
67
  }
68
68
 
69
- .main > div {
69
+ :global(.account-section) > div {
70
70
  display: grid;
71
71
  grid-template-columns: 10em 1fr 2em;
72
72
  align-items: center;