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 styles
author
damedotblog
date
1 year ago
(Apr 22, 2025, 12:50 PM -0400)
commit
e612d5e0
e612d5e00cbf61c688edab978c66279e6d579048
parent
10901798
10901798447c59d49f83ad9da23f361055eeef4d
+7
-3
1 changed file
Expand all
Collapse all
Unified
Split
src
components
Verifier
Verifier.css
+7
-3
src/components/Verifier/Verifier.css
Reviewed
···
93
93
}
94
94
95
95
.verifier-input-container {
96
96
-
position: relative; /* For autocomplete positioning */
97
97
-
max-width: 400px; /* Limit width */
96
96
+
position: relative; /* Needed for autocomplete positioning */
97
97
+
max-width: 400px;
98
98
+
border: none; /* Remove any potential border */
99
99
+
outline: none; /* Remove outline on focus */
100
100
+
padding: 0; /* Remove padding if any was added */
101
101
+
margin: 0; /* Remove margin if any was added */
98
102
}
99
103
100
104
.verifier-form-container {
···
224
228
/* Verification Lists */
225
229
.verifier-list-header {
226
230
display: flex;
227
227
-
justify-content: space-between;
231
231
+
justify-content: space-between; /* Align button to the right */
228
232
align-items: center;
229
233
margin-bottom: 10px; /* Space above list */
230
234
}