Move locate me button #54

Merged
edazdarevic merged 2 commits from move-locate-me-button into master 2019-10-18 14:35:53 +02:00
2 changed files with 8 additions and 3 deletions

View File

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

View File

@@ -73,8 +73,13 @@ body {
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;
border: 1px solid rgb(0, 173, 187);
}