Skip to content

Commit 4fcc8d3

Browse files
committed
fix: unused ProfileModal
1 parent 22c1b8d commit 4fcc8d3

File tree

3 files changed

+50
-3
lines changed

3 files changed

+50
-3
lines changed

src/shared/components/ProfilePage/Stats/ChartTooltip/styles.scss

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
}
2828

2929
&.rotated {
30-
3130
&::before {
3231
content: none;
3332
}

src/shared/components/ProfilePage/index.jsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ import { dataMap } from './ExternalLink';
1919
import Header from './Header';
2020
import MemberTracks from './MemberTracks';
2121

22-
import './styles.scss';
22+
import styles from './styles.scss';
2323
import Skills from './Skills';
2424
import MemberInfo from './MemberInfo';
2525
import Activity from './Activity';
2626
import TcaCertificates from './TcaCertificates';
27-
import ProfileModal from './ProfileModal';
27+
// import ProfileModal from './ProfileModal';
2828
// import Awards from './Awards';
2929

3030
/**

src/shared/components/ProfilePage/styles.scss

Lines changed: 48 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,3 +56,51 @@
5656
padding-top: 32px;
5757
}
5858
}
59+
60+
.modal-overlay {
61+
background: #000;
62+
}
63+
64+
.modal-container-copilot{
65+
min-height: 220px;
66+
}
67+
.modal-container {
68+
width: 1232px;
69+
min-height: 700px;
70+
max-width: 1232px;
71+
border-radius: 8px;
72+
padding: 32px 32px 0 32px;
73+
gap: 24px;
74+
75+
&.modal-container-copilot {
76+
height: auto;
77+
}
78+
79+
@include xs-to-sm {
80+
width: 100%;
81+
max-width: 100%;
82+
height: 100% !important;
83+
max-height: 100% !important;
84+
padding: 24px 16px 48px 16px;
85+
}
86+
87+
.header {
88+
display: flex;
89+
justify-content: space-between;
90+
align-items: center;
91+
padding-bottom: 24px;
92+
93+
.title {
94+
@include barlow-medium;
95+
96+
font-weight: 600;
97+
font-size: 22px;
98+
line-height: 26px;
99+
text-transform: uppercase;
100+
}
101+
102+
.icon {
103+
cursor: pointer;
104+
}
105+
}
106+
}

0 commit comments

Comments
 (0)