Skip to content

Commit

Permalink
Mobile app - Fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
1aerostorm committed Nov 30, 2024
1 parent 5e2b5fc commit eac7c51
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,19 @@
padding: 10px;
display: flex;
flex-direction: column;
position: relative;
position: sticky;
top: 0px;

background-color: white;
border-bottom: 1px solid #eeeef1;
}

@supports (backdrop-filter: blur(20px)) {
.conversation-search {
border: none;
background-color: rgba(255, 255, 255, 0.8);
backdrop-filter: blur(20px);
}
}

.conversation-search-input {
Expand Down
5 changes: 5 additions & 0 deletions src/components/modules/MessagesTopCenter.scss
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,11 @@
background-color: rgba(40, 51, 54, 0.7) !important;
}
}
@media screen and (max-width: 39.9375em) {
.GroupDropdown {
left: 10px !important;
}
}

.msgs-group-dropdown {
.logo {
Expand Down
5 changes: 5 additions & 0 deletions src/components/pages/Messages.scss
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
.msgs-toolbar {
height: 61px !important;
}
.conversation-list {
.msgs-toolbar {
top: -61px !important;
}
}

.msgs-back-btn {
display: none;
Expand Down
2 changes: 1 addition & 1 deletion src/utils/ServerApiClient.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ import { fetchEx } from 'golos-lib-js/lib/utils'
export function getHost() {
const { location, } = window;
if (process.env.NODE_ENV === 'development') {
return location.protocol + '//'+ location.hostname + ':8088';
return location.protocol + '//'+ location.hostname + ':8080';
}
return location.origin;
}
Expand Down

0 comments on commit eac7c51

Please sign in to comment.