Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump axios from 0.18.1 to 0.21.1 #5

Merged
merged 3 commits into from Mar 18, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
19 changes: 13 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -11,7 +11,7 @@
"@testing-library/jest-dom": "^5.7.0",
"@types/markerclustererplus": "^2.1.29",
"@types/react": "^16.0.0",
"axios": "^0.18.0",
"axios": "^0.21.1",
"babel-jest": "^26.6.3",
"bootstrap": "^4.5.3",
"dom-to-image": "^2.6.0",
Expand Down
10 changes: 10 additions & 0 deletions src/components/Auth/style.jsx
Expand Up @@ -95,6 +95,11 @@ const Button = css`
width: 120px;
line-height: normal;
}

&:focus {
border: none;
outline: none;
}
`;

const RegisterBtn = styled.button`
Expand Down Expand Up @@ -148,6 +153,11 @@ const Input = styled.input`
display: block;
border: 1px solid #ced4da;

&:focus {
border: none;
outline: none;
}

@media only screen and (max-width: 575.98px) {
font-size: 14px;
height: 30px;
Expand Down
10 changes: 10 additions & 0 deletions src/components/List/style.js
Expand Up @@ -40,6 +40,11 @@ const Select = styled.select`
text-align: center;
text-align-last: center;

&:focus {
border: none;
outline: none;
}

@media only screen and (max-width: 767.98px) {
width: 150px;
height: 25px;
Expand All @@ -62,6 +67,11 @@ const Input = styled.input`
border-radius: 5px;
border: 1px solid transparent;

&:focus {
border: none;
outline: none;
}

@media only screen and (max-width: 767.98px) {
width: 150px;
height: 25px;
Expand Down
5 changes: 5 additions & 0 deletions src/components/Main/Map/style.jsx
Expand Up @@ -90,6 +90,11 @@ const InfoBtn = styled.button`
border: 2px solid #00b8e6;
font-weight: bold;

&:focus {
border: none;
outline: none;
}

&:hover {
cursor: pointer;
color: #fff;
Expand Down
5 changes: 5 additions & 0 deletions src/components/Main/MarkerCreator/style.jsx
Expand Up @@ -95,6 +95,11 @@ const Button = css`
@media only screen and (max-width: 575.98px) {
width: 150px;
}

&:focus {
border: none;
outline: none;
}
`;

const CrudButton = css`
Expand Down
10 changes: 10 additions & 0 deletions src/components/Main/Panel/style.jsx
Expand Up @@ -87,6 +87,11 @@ border: 1px solid #00b8e6;
transition: background-color 1s ease;
text-transform: uppercase;
color: #fff;

&:focus {
border: none;
outline: none;
}
`;

const SelectButton = styled.button`
Expand Down Expand Up @@ -235,6 +240,11 @@ color: #fff;
border-radius: 3px;
border: 1px solid #4ddbff;
text-transform: uppercase;

&:focus {
border: none;
outline: none;
}
`;

const Markers = styled.div`
Expand Down
5 changes: 5 additions & 0 deletions src/components/NavBar/style.jsx
Expand Up @@ -198,6 +198,11 @@ const LogoutBtn = styled.button`
line-height: 1.5;
border-radius: 0.25rem;

&:focus {
border: none;
outline: none;
}

@media (max-width: 1199px) {
margin: 15px 0;
margin-left: auto;
Expand Down
5 changes: 5 additions & 0 deletions src/components/Statistic/style.jsx
Expand Up @@ -98,6 +98,11 @@ const Input = styled.input`
border-radius: 5px;
border: 1px solid #bfbfbf;

&:focus {
border: none;
outline: none;
}

@media only screen and (max-width: 767.98px) {
height: auto;
margin: 0;
Expand Down
5 changes: 5 additions & 0 deletions src/components/Users/style.jsx
Expand Up @@ -50,6 +50,11 @@ const Input = styled.input`
border: 1px solid transparent;
margin-right: 50px;

&:focus {
border: none;
outline: none;
}

@media only screen and (max-width: 767.98px) {
height: 30px;
width: 150px;
Expand Down