Skip to content

Commit

Permalink
fix: z-index of clear buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
Krzysztof Węgliński authored and Krzysztof Węgliński committed Feb 14, 2025
1 parent c06cc0e commit 206165b
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 7 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ yarn-error.log*
pnpm-debug.log*
lerna-debug.log*
.env
server/data/*

node_modules
dist
Expand Down
4 changes: 4 additions & 0 deletions changelog.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
### 0.10.4

- fix: z-index

### 0.10.3

- dockerfile fix
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "sth-libretranslate",
"private": true,
"version": "0.10.3",
"version": "0.10.4",
"type": "module",
"scripts": {
"dev": "concurrently \"vite\" \"npm run node\"",
Expand Down
4 changes: 0 additions & 4 deletions server/data/words.json

This file was deleted.

2 changes: 1 addition & 1 deletion src/languagecheck/Text.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ const IconContainer = styled.div`
position: absolute;
top: 0px;
right: 0px;
z-index: 99999;
z-index: 1;
`;

export const TextBox = () => {
Expand Down
2 changes: 1 addition & 1 deletion src/translate/Source.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const IconContainer = styled.div`
position: absolute;
top: 0px;
right: 0px;
z-index: 99999;
z-index: 1;
`;

export const Source = ({
Expand Down

0 comments on commit 206165b

Please sign in to comment.