Skip to content

Commit

Permalink
version 5
Browse files Browse the repository at this point in the history
  • Loading branch information
roienatan committed Nov 15, 2023
1 parent 41397c8 commit 12c24b1
Show file tree
Hide file tree
Showing 18 changed files with 66 additions and 46 deletions.
25 changes: 16 additions & 9 deletions public/assets/images/floppy-disk.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
.my-account-mobile-billing__tabs-wrapper {
padding: 0 var(--content-ph);
white-space: nowrap;
border-bottom: 1px solid $light-gray-1;
border-bottom: 1px solid var(--gentle-stroke);
}

.my-account-mobile-billing__tab-panels {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@
font-style: normal;
font-weight: 400;
font-size: $xxsmall;
color: var(--secondary-fill);
color: var(--secondary-text);
margin-top: 0.1rem;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@
flex-direction: row;
align-items: flex-start;
width: 100%;
background-color: $c-pink-light;
background-color: var(--secondary-fill);
color: var(--primary-text);
border-radius: 0.875rem;
padding: 0.5rem 0.75rem;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -68,13 +68,6 @@
}
}

.separator {
width: 100%;
height: 0.0625rem;
margin: 0.875rem 0 1.75rem;
background-color: $c-neutrals-200;
}

.commonProjectsWrapper {
@include tablet {
padding-left: 2.5rem;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,6 @@ const AboutTab: FC<AboutTabProps> = (props) => {
const renderMobileColumn = () => (
<div className={styles.mainColumnWrapper}>
<CommonDescription common={common} />
<div className={styles.separator} />
{subCommons.length > 0 && (
<>
<CommonProjects
Expand All @@ -88,12 +87,9 @@ const AboutTab: FC<AboutTabProps> = (props) => {
circles={governance.circles}
styles={{ projectsWrapper: styles.commonProjectsWrapper }}
/>
<div className={styles.separator} />
</>
)}
<div className={styles.separator} />
{rules.length > 0 && <CommonRules rules={rules} />}
<div className={styles.separator} />
<CommonEntranceInfo
limitations={limitations}
withJoinRequest={!commonMember}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,6 @@

.dropdownItem {
&:hover {
background-color: $c-primary-200;
background-color: var(--hover-fill);
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@

.pin {
color: $c-pink-primary;
margin-left: 0.75rem;
}

.pinActive {
Expand All @@ -48,7 +49,11 @@
width: 1.25rem;
height: 1.25rem;
margin-left: 0.75rem;
color: var(--primary-text);
color: var(--secondary-text);
}

.starActive {
color: $white;
}

.unseen {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,12 @@ export const FeedCardTags: FC<FeedCardTagsProps> = (props) => {
)}
{hasUnseenMention && <div className={styles.hasUnseenMention}>@</div>}
{isFollowing && (
<StarIcon className={styles.starIcon} stroke="currentColor" />
<StarIcon
className={classNames(styles.starIcon, {
[styles.starActive]: isActive,
})}
stroke="currentColor"
/>
)}
{isNewTagVisible && (
<div
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@

.button {
--btn-w: 3rem;
background-color: $c-pink-active-feed-cards-light;
background-color: transparent;
border: none;
}

.icon {
Expand Down
2 changes: 1 addition & 1 deletion src/services/PayMeService.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ const axiosClient = axios.create({
});

const endpoints = {
createBuyerTokenPage: `${config.cloudFunctionUrl}/payments/payme/payin/create-buyer-token-page`,
createBuyerTokenPage: `${config.cloudFunctionUrl}/api/payments/payme/payin/create-buyer-token-page`,
};

const createBuyerTokenPage = async (
Expand Down
10 changes: 5 additions & 5 deletions src/shared/components/Chat/ChatMessage/ChatMessage.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -169,7 +169,7 @@
}

.replyMessageContainerCurrentUser {
background-color: $c-pink-light;
background-color: var(--secondary-fill);
}

.replyMessageImage {
Expand All @@ -185,14 +185,14 @@

.replyMessageName {
font-size: $xxsmall;
color: $c-neutrals-600;
color: $black;
font-weight: 600;
line-height: 1.25rem;
margin-bottom: 0.125rem;
}

.replyMessageNameCurrentUser {
color: $black;
color: var(--primary-text);
}

.replyMessageNameWithImage {
Expand All @@ -205,15 +205,15 @@
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
color: $c-neutrals-600;
color: $black;
font-size: $xxsmall;
margin-bottom: 0.4rem;
line-height: 0.8rem;
max-height: 1.6rem;
}

.replyMessageContentCurrentUser {
color: $black;
color: var(--primary-text);
}

.replyMessageContentWithImage {
Expand Down
2 changes: 1 addition & 1 deletion src/shared/components/SocialLinks/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@
align-items: center;
width: 3.5rem;
height: 3.5rem;
background-color: $white;
background-color: var(--secondary-background);
box-shadow: 0px 6.77778px 25.4167px rgba(0, 0, 0, 0.15259);
border-radius: 50%;
border: none;
Expand Down
8 changes: 4 additions & 4 deletions src/shared/components/Tabs/Tab/index.scss
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,13 @@
}
}
.custom-tab--active {
--tab-bb-color: var(--tab-active-color);
--tab-color: var(--tab-active-color);
--tab-bb-color: var(--secondary-text);
--tab-color: var(--secondary-text);

&:active,
&:hover {
--tab-bb-color: var(--tab-active-color);
--tab-color: var(--tab-active-color);
--tab-bb-color: var(--secondary-text);
--tab-color: var(--secondary-text);
}
}
.custom-tab--with-icon {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
--text-editor-h: auto;
max-height: 50vh;
min-height: 4.5rem;
background-color: var(--secondary-background);
}

.editorReadOnly {
Expand Down
Loading

0 comments on commit 12c24b1

Please sign in to comment.