File tree Expand file tree Collapse file tree 3 files changed +43
-15
lines changed
features/website/pages/websites Expand file tree Collapse file tree 3 files changed +43
-15
lines changed Original file line number Diff line number Diff line change 34
34
</ li >
35
35
</ ul >
36
36
< div class ="profile " *ngIf ="userActive ">
37
- < div class ="profile-details ">
37
+ < div routerLink =" /settings " class ="profile-details ">
38
38
< figure class ="box-image ">
39
39
< img
40
40
src ="https://images.unsplash.com/photo-1487412720507-e7ab37603c6f?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1171&q=80 "
41
41
alt ="img-user ">
42
42
</ figure >
43
43
< span class ="username "> {{userActive.email }} </ span >
44
- < a href ="" class ="more ">
45
- < i class ='bx bx-dots-horizontal-rounded '> </ i >
46
- </ a >
47
44
</ div >
48
45
</ div >
49
46
Original file line number Diff line number Diff line change 44
44
.card-body .website-title {
45
45
display : flex;
46
46
justify-content : space-between;
47
- align-items : flex-start;
47
+ align-items : center;
48
+ width : 100% ;
49
+ gap : 5px ;
48
50
}
49
51
50
52
.card-body .website-title .title {
51
53
font-size : 26px ;
52
54
font-weight : bold;
55
+ overflow : hidden;
56
+ text-overflow : ellipsis;
57
+ white-space : nowrap;
58
+ flex : 1 1 100% ;
59
+ width : 0 ;
53
60
}
54
61
55
62
.card-body .website-title .btn {
56
63
border-radius : 40px ;
57
64
max-width : 100px ;
65
+ width : 100px ;
58
66
}
59
67
60
68
.card-body .w-desc {
80
88
}
81
89
}
82
90
83
- @media (max-width : 768px ) {
84
- .card .card-website {
85
- flex-direction : column;
91
+ @media (max-width : 480px ) {
92
+ .card .card-website figure {
93
+ width : 3rem ;
94
+ height : 3rem ;
95
+ min-width : 3rem ;
96
+ min-height : 3rem ;
86
97
}
87
98
88
- .card .card-website figure {
89
- max-width : 100% ;
90
- height : 10rem ;
91
- border-radius : 10px 10px 0 0 ;
99
+ .card-body .website-title .title {
100
+ font-size : 22px ;
92
101
}
93
102
94
- .card-body .bottom . buttons . w-link {
103
+ .card-body .w-desc {
95
104
font-size : 14px ;
105
+ text-overflow : ellipsis;
106
+ overflow : hidden;
107
+ display : -webkit-box !important ;
108
+ -webkit-line-clamp : 2 ;
109
+ -webkit-box-orient : vertical;
110
+ white-space : normal;
111
+ max-height : 50px ;
96
112
}
97
113
}
Original file line number Diff line number Diff line change @@ -220,14 +220,15 @@ input:focus-within {
220
220
section > .title-wrapper {
221
221
position : sticky;
222
222
top : 0 ;
223
- backdrop-filter : blur (12px );
224
223
z-index : 100 ;
225
224
width : 100% ;
226
- height : 70px ;
225
+ height : auto;
226
+ min-height : 70px ;
227
227
padding : 0 1rem ;
228
228
display : flex;
229
229
align-items : center;
230
230
justify-content : space-between;
231
+ background : hsla (0 , 0% , 100% , 0.6 );
231
232
}
232
233
233
234
.title-wrapper > span .title-section {
@@ -257,6 +258,14 @@ section > .title-wrapper {
257
258
margin : 0 1rem ;
258
259
}
259
260
261
+ @supports ((-webkit-backdrop-filter : none) or (backdrop-filter : none)) {
262
+ section > .title-wrapper {
263
+ background : transparent;
264
+ backdrop-filter : blur (12px );
265
+ -webkit-backdrop-filter : blur (12px );
266
+ }
267
+ }
268
+
260
269
/* Sekeletons design */
261
270
262
271
.gradient {
@@ -286,3 +295,9 @@ section > .title-wrapper {
286
295
background-position : 468px 0 ;
287
296
}
288
297
}
298
+
299
+ @media (max-width : 480px ) {
300
+ .title-wrapper > span .title-section {
301
+ font-size : 32px ;
302
+ }
303
+ }
You can’t perform that action at this time.
0 commit comments