Skip to content
This repository was archived by the owner on May 13, 2024. It is now read-only.

Commit cd5bd6d

Browse files
Hubert KosterHubert Koster
authored andcommitted
chore: fixing input
1 parent 1246dbd commit cd5bd6d

File tree

2 files changed

+5
-9
lines changed

2 files changed

+5
-9
lines changed

src/features/dashboard/components/ApiTokenForm/api-token.form.module.scss

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -56,19 +56,16 @@ form {
5656
position: relative;
5757
box-sizing: border-box;
5858
margin: rem(1) 0;
59-
&:focus-within {
60-
border-color: var(--colors-blue400);
61-
}
6259
&:hover {
6360
border: 1px solid var(--colors-greyLight600);
6461
}
62+
&:focus-within {
63+
border-color: var(--colors-blue500);
64+
}
6565
button {
66-
top: 0;
67-
bottom: 0;
68-
right: 0;
69-
position: absolute;
7066
border-top-left-radius: 0;
7167
border-bottom-left-radius: 0;
68+
height: rem(3);
7269
}
7370
label {
7471
position: absolute;
@@ -98,7 +95,7 @@ form {
9895
}
9996
&:focus {
10097
outline-color: unset;
101-
outline: 1px solid var(--colors-blue500);
98+
outline: unset;
10299
border-radius: rem(0.3);
103100
& ~ label {
104101
color: var(--colors-blue400);

src/features/dashboard/components/Table/index.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ const Table = <T extends object>({
4343
return (
4444
<tr key={row.getRowProps().key} {...row.getRowProps()}>
4545
{row.cells.map((cell) => {
46-
console.log(cell);
4746
return (
4847
<td key={cell.getCellProps().key} {...cell.getCellProps()}>
4948
{cell.render('Cell', getCustomCellProps(cell))}

0 commit comments

Comments
 (0)