Merge branch 'move-locate-me-button' into 'master'

Move locate me button

See merge request saburly/marketalarm/web!54
This commit was merged in pull request #54.
This commit is contained in:
Bilal Catic
2019-10-18 12:35:52 +00:00
2 changed files with 8 additions and 3 deletions

View File

@@ -59,7 +59,7 @@ const getQueryReviewData = searchRequest => {
title: priceTitle, title: priceTitle,
url: `/filteri/${id}?nextStep=pregled` url: `/filteri/${id}?nextStep=pregled`
} }
].filter((data) => data.title != "-"); ].filter(data => data.title != "-");
}; };
const getQueryReview = async (req, res) => { const getQueryReview = async (req, res) => {

View File

@@ -73,8 +73,13 @@ body {
padding: 5px 5px 5px 10px; padding: 5px 5px 5px 10px;
} }
.btn-floating:hover, .btn:hover {
btn:hover { background-color: white;
color: #02adba;
border: 1px solid rgb(0, 173, 187);
}
.btn-floating:hover {
background-color: #02adba; background-color: #02adba;
border: 1px solid rgb(0, 173, 187); border: 1px solid rgb(0, 173, 187);
} }