Skip to content
This repository was archived by the owner on Apr 3, 2022. It is now read-only.

Commit 988a591

Browse files
committed
version num
2 parents e1ea4c9 + 91d573c commit 988a591

File tree

10 files changed

+194
-100
lines changed

10 files changed

+194
-100
lines changed

.github/workflows/main.yml

-28
This file was deleted.

.gitignore

+2-1
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,5 @@ yarn-error.log*
2424

2525
.env
2626
package-lock.json
27-
*.swp
27+
*.swp
28+
.github/

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# CryptoChat 2.2 [![CodeFactor](https://www.codefactor.io/repository/github/cryptochat-dev/cryptochat2/badge)](https://www.codefactor.io/repository/github/cryptochat-dev/cryptochat2) [![Memes](https://img.shields.io/badge/need-memes-red)](https://img.shields.io/badge/need-memes-red)
1+
# CryptoChat 2.3 [![CodeFactor](https://www.codefactor.io/repository/github/cryptochat-dev/cryptochat2/badge)](https://www.codefactor.io/repository/github/cryptochat-dev/cryptochat2) [![Memes](https://img.shields.io/badge/need-memes-red)](https://img.shields.io/badge/need-memes-red)
22

33
[Official Instance](https://cryptochat.dev), [Beta Instance](https://beta.cryptochat.dev), [Legal](https://cryptochat.dev/legal), [Email Us](mailto:[email protected])
44

@@ -20,7 +20,7 @@ CryptoChat supports end-to-end encrypted file transfer\*, so you can send sensit
2020

2121
### Encryption
2222

23-
All messages sent through the official CryptoChat clients are end-to-end encrypted locally, meaning nobody except for the message recipients can read their contents. If you need more piece of mind during your chats, use the random key generator for an extra-secure key (it would take 3,505 years to crack!).
23+
All messages sent through the official CryptoChat clients are end-to-end encrypted locally, meaning nobody except for the message recipients can read their contents. If you need more piece of mind during your chats, use the random key generator for an extra-secure key (it would take 27,255,689 years to crack!<sub>[Source](https://www.rempe.us/diceware/#eff)</sub>).
2424

2525
### Ephemeral
2626

public/robots.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# https://www.robotstxt.org/robotstxt.html
22
User-agent: *
3-
Disallow:
3+
Allow: /

public/styles/Chat.css

+5
Original file line numberDiff line numberDiff line change
@@ -119,13 +119,18 @@ a {
119119
-20px -20px 60px var(--second-box-shadow);
120120
}
121121

122+
.previewedImage {
123+
max-width: 100%;
124+
}
125+
122126
/* React Elements */
123127

124128
.emojiPicker {
125129
position: relative;
126130
z-index: 99 !important;
127131
float: right;
128132
color: var(--txt-color);
133+
bottom: 25rem;
129134
}
130135

131136
/* Text */

public/styles/Splash.css

+8-3
Original file line numberDiff line numberDiff line change
@@ -72,14 +72,19 @@ body {
7272
}
7373

7474
.roomkey {
75-
margin-top: 10%;
75+
margin-top: 5%;
7676
display: flex;
7777
}
7878

79-
.username {
79+
.fieldparent {
8080
width: 50%;
8181
}
8282

83+
.username {
84+
display: flex;
85+
justify-content: center;
86+
}
87+
8388
.buttons.bottom {
8489
margin-top: 5%;
8590
}
@@ -145,7 +150,7 @@ body {
145150
}
146151

147152
@media only screen and (max-width: 600px) {
148-
.username {
153+
.fieldparent {
149154
width: 90%;
150155
}
151156

public/styles/global.css

+11-1
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,7 @@ h1 {
183183
width: 6em;
184184
height: 6em;
185185
border: 1.1em solid var(--txt-color);
186-
border-left: 1.1em solid #000000;
186+
border-left: 1.1em solid var(--bttn-color);
187187
border-radius: 50%;
188188
animation: load8 1.1s infinite linear;
189189
transition: opacity 0.3s;
@@ -239,6 +239,16 @@ h1 {
239239
color: rgb(253, 93, 253);
240240
}
241241

242+
.icon {
243+
font-size: 3rem;
244+
}
245+
246+
.icon.users {
247+
float: right;
248+
margin-right: 2rem;
249+
font-size: 1.5rem;
250+
}
251+
242252
/* Input */
243253

244254
.fileinput {

0 commit comments

Comments
 (0)