alpha
Login
or
Join now
atpota.to
/
cred.blue
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
This repository has no description
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
fix home page styling
author
damedotblog
date
1 year ago
(Jan 22, 2025, 6:46 PM -0500)
commit
bffdf690
bffdf690a9e16cbe4c5135f7709ab7b4e5e65350
parent
27a2460d
27a2460d2e78151f23b30d9048ee8f800afa5dc0
+5
-6
4 changed files
Expand all
Collapse all
Unified
Split
src
components
Home
Home.css
SearchBar
SearchBar.css
SearchBar.js
UserProfile
components
PostTypeCard.js
+1
-1
src/components/Home/Home.css
Reviewed
···
13
13
14
14
form.search-bar {
15
15
align-items: center;
16
16
-
flex-direction: column;
16
16
+
flex-direction: row;
17
17
gap: 0px;
18
18
}
+1
-2
src/components/SearchBar/SearchBar.css
Reviewed
···
7
7
}
8
8
9
9
.search-bar input {
10
10
-
width: 300px;
11
10
padding: 10px;
12
11
font-size: 1em;
13
12
border: 1px solid #ccc;
···
35
34
}
36
35
37
36
form {
38
38
-
padding: 20px 35px;
37
37
+
padding: 20px 20px;
39
38
flex-direction: unset;
40
39
gap: 0px;
41
40
}
+1
-1
src/components/SearchBar/SearchBar.js
Reviewed
···
22
22
<form className="search-bar" onSubmit={handleSubmit}>
23
23
<input
24
24
type="text"
25
25
-
placeholder="Enter Bluesky username (e.g., dame.bsky.social)"
25
25
+
placeholder="(e.g. dame.bsky.social)"
26
26
value={username}
27
27
onChange={(e) => setUsername(e.target.value)}
28
28
required
+2
-2
src/components/UserProfile/components/PostTypeCard.js
Reviewed
···
80
80
textAnchor={textAnchor}
81
81
fill="#999"
82
82
>
83
83
-
{`(Rate ${(percent * 100).toFixed(2)}%)`}
83
83
+
{`${(percent * 100).toFixed(2)}%)`}
84
84
</text>
85
85
</g>
86
86
);
···
118
118
activeIndex={activeIndex}
119
119
activeShape={renderActiveShape}
120
120
data={data}
121
121
-
cx="45%"
121
121
+
cx="50%"
122
122
cy="50%"
123
123
innerRadius={45}
124
124
outerRadius={80}