Skip to content

Commit

Permalink
add x connect method option (#123)
Browse files Browse the repository at this point in the history
* add x connect method option

* improve mobile styling
  • Loading branch information
alecananian authored Sep 16, 2024
1 parent bc99a58 commit 28cfa6b
Show file tree
Hide file tree
Showing 16 changed files with 12,505 additions and 17,242 deletions.
5 changes: 5 additions & 0 deletions .changeset/blue-turkeys-yell.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@treasure-dev/tailwind-config": patch
---

Removed unused CSS properties
6 changes: 6 additions & 0 deletions .changeset/lucky-eyes-allow.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
---
"@treasure-dev/tdk-react": patch
"@treasure-dev/tdk-core": patch
---

Added X connect method option
14 changes: 2 additions & 12 deletions examples/connect-electron/src/renderer/src/assets/base.css
Original file line number Diff line number Diff line change
Expand Up @@ -48,18 +48,8 @@ body {
color: var(--color-text);
background: var(--color-background);
line-height: 1.6;
font-family:
Inter,
-apple-system,
BlinkMacSystemFont,
'Segoe UI',
Roboto,
Oxygen,
Ubuntu,
Cantarell,
'Fira Sans',
'Droid Sans',
'Helvetica Neue',
font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue",
sans-serif;
text-rendering: optimizeLegibility;
-webkit-font-smoothing: antialiased;
Expand Down
16 changes: 5 additions & 11 deletions examples/connect-electron/src/renderer/src/assets/main.css
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
@import './base.css';
@import "./base.css";

body {
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
background-image: url('./wavy-lines.svg');
background-image: url("./wavy-lines.svg");
background-size: cover;
user-select: none;
}
Expand All @@ -15,14 +15,8 @@ code {
padding: 3px 5px;
border-radius: 2px;
background-color: var(--color-background-mute);
font-family:
ui-monospace,
SFMono-Regular,
SF Mono,
Menlo,
Consolas,
Liberation Mono,
monospace;
font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas,
"Liberation Mono", monospace;
font-size: 85%;
}

Expand Down Expand Up @@ -129,7 +123,7 @@ code {
bottom: 30px;
margin: 0 auto;
padding: 15px 0;
font-family: 'Menlo', 'Lucida Console', monospace;
font-family: "Menlo", "Lucida Console", monospace;
display: inline-flex;
overflow: hidden;
align-items: center;
Expand Down
Loading

0 comments on commit 28cfa6b

Please sign in to comment.