Skip to content

Commit

Permalink
Merge pull request #103 from Valik3201/style/mobile-menu-auth
Browse files Browse the repository at this point in the history
Style/mobile menu auth
  • Loading branch information
Valik3201 committed Jan 6, 2024
2 parents f7970b0 + 414d841 commit af70fdb
Showing 1 changed file with 18 additions and 6 deletions.
24 changes: 18 additions & 6 deletions src/style/css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -541,6 +541,7 @@ svg.logo-icon {
font-weight: 500;
color: white;
cursor: pointer;
padding: 4px 12px;
}
.arrow-right-icon {
margin-right: 14px;
Expand Down Expand Up @@ -659,8 +660,6 @@ svg.logo-icon {
stroke: black;
}
.sign-up-button-mobile {
margin-top: 40px;
margin-left: 20px;
border: 1.5 solid black;
background-color: #4f2ee8;
}
Expand Down Expand Up @@ -729,6 +728,15 @@ svg.logo-icon {
.user-icon-mobile {
background-color: white;
}
#user-name-display {
max-width: 90px;
font-size: 22px;
font-weight: 700;
letter-spacing: -0.44px;
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
.background-cover-container {
display: flex;
justify-content: flex-start;
Expand Down Expand Up @@ -1389,8 +1397,16 @@ svg.logo-icon {
top: 45px;
}

.sign-up-button {
display: none;
}

@media screen and (min-width: 768px) {
.sign-up-button {
display: none;
}
.sign-up-button:not(.hidden) {
display: flex;
justify-content: space-between;
padding: 4px 12px;
}
Expand All @@ -1412,10 +1428,6 @@ svg.logo-icon {
position: relative;
}

#sign-up-button:not(.hidden) {
display: block;
}

/* Pagination */
.pagination {
display: flex;
Expand Down

0 comments on commit af70fdb

Please sign in to comment.