File tree Expand file tree Collapse file tree 5 files changed +30
-14
lines changed Expand file tree Collapse file tree 5 files changed +30
-14
lines changed Original file line number Diff line number Diff line change 1
1
.container {
2
- @apply py-[60px ] px-[20px ] bg-[# ffd0c7 ] md:px -[32px ];
2
+ @apply py-[60px ] px-[20px ] bg-[# EAF5FD ] md:py -[32px ];
3
3
}
4
4
5
5
.subscribeBox {
Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ export default function Subscribe() {
41
41
< div className = { styles . subscribeBox } >
42
42
< img className = { styles . subscribeIcon } src = "/images/footer/subscribe.svg" />
43
43
< div className = { styles . copyBox } >
44
- < div className = { styles . subscribeTitle } > Contribute and join our survey </ div >
44
+ < div className = { styles . subscribeTitle } > Stay up-to-date on the latest Scroll Developer news </ div >
45
45
< div className = { styles . subscribeText } > Lorem ipsum dolor sit amet, consectetur adipiscing elit.</ div >
46
46
</ div >
47
47
< MailchimpSubscribe
Original file line number Diff line number Diff line change @@ -6,11 +6,9 @@ const DiscordIcon: React.FC<React.SVGProps<SVGSVGElement>> = (props) => (
6
6
</ svg >
7
7
)
8
8
const GithubIcon : React . FC < React . SVGProps < SVGSVGElement > > = ( props ) => (
9
- < svg width = "17" height = "11" viewBox = "0 0 17 11" fill = "currentColor" xmlns = "http://www.w3.org/2000/svg" >
10
- < path d = "M4.67948 10.0985C7.26334 10.0985 9.35798 8.0179 9.35798 5.45135C9.35798 2.8848 7.26334 0.804199 4.67948 0.804199C2.09561 0.804199 0.000976562 2.8848 0.000976562 5.45135C0.000976562 8.0179 2.09561 10.0985 4.67948 10.0985Z" />
11
- < path d = "M12.143 9.8539C13.4372 9.8539 14.4864 7.88271 14.4864 5.45112C14.4864 3.01953 13.4372 1.04834 12.143 1.04834C10.8487 1.04834 9.79956 3.01953 9.79956 5.45112C9.79956 7.88271 10.8487 9.8539 12.143 9.8539Z" />
12
- < path d = "M15.7629 9.39826C16.2165 9.39826 16.5843 7.63105 16.5843 5.45108C16.5843 3.27112 16.2165 1.50391 15.7629 1.50391C15.3092 1.50391 14.9414 3.27112 14.9414 5.45108C14.9414 7.63105 15.3092 9.39826 15.7629 9.39826Z" />
13
- </ svg >
9
+ < svg xmlns = "http://www.w3.org/2000/svg" width = "18" height = "17" viewBox = "0 0 18 17" fill = "currentColor" >
10
+ < path d = "M8.81364 0C4.1173 0 0.313477 3.90255 0.313477 8.71559C0.313477 12.5672 2.74864 15.8333 6.12546 16.9849C6.55047 17.0671 6.7062 16.7972 6.7062 16.5657C6.7062 16.3589 6.69923 15.8104 6.69557 15.0839C4.33113 15.6095 3.83241 13.9146 3.83241 13.9146C3.44559 12.9088 2.88677 12.6396 2.88677 12.6396C2.11677 12.0995 2.9462 12.1106 2.9462 12.1106C3.79987 12.1712 4.24812 13.0086 4.24812 13.0086C5.00617 14.3411 6.23803 13.9562 6.7238 13.7337C6.80017 13.1697 7.01931 12.7862 7.26203 12.5683C5.3744 12.3503 3.39014 11.6006 3.39014 8.26138C3.39014 7.31 3.71952 6.53254 4.26506 5.92277C4.16943 5.70242 3.88255 4.81617 4.33943 3.61602C4.33943 3.61602 5.05132 3.38251 6.67698 4.50955C7.35699 4.31588 8.07951 4.21991 8.80202 4.2154C9.52454 4.21991 10.247 4.31588 10.9271 4.50955C12.5421 3.38251 13.254 3.61602 13.254 3.61602C13.7109 4.81651 13.424 5.70242 13.339 5.92277C13.8809 6.53254 14.2103 7.31 14.2103 8.26138C14.2103 11.6096 12.2233 12.3465 10.3321 12.561C10.6296 12.8226 10.9058 13.3571 10.9058 14.1738C10.9058 15.3399 10.8952 16.2771 10.8952 16.5605C10.8952 16.7888 11.0439 17.0615 11.4796 16.9746C14.8803 15.8305 17.3135 12.562 17.3135 8.71629C17.3138 3.90255 13.508 0 8.81364 0Z" fill = "currentColor" />
11
+ </ svg >
14
12
)
15
13
const YoutubeIcon : React . FC < React . SVGProps < SVGSVGElement > > = ( props ) => (
16
14
< svg width = "19" height = "13" viewBox = "0 0 19 13" fill = "currentColor" xmlns = "http://www.w3.org/2000/svg" >
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ const anchorHash = anchor.replace(/\s+/g, "-")
11
11
<div >
12
12
<slot name =" title" />
13
13
</div >
14
- <a href ={ ` #${anchorHash } ` } dir =" auto" aria-label ={ anchor } > # </a >
14
+ <a href ={ ` #${anchorHash } ` } dir =" auto" aria-label ={ anchor } ></a >
15
15
</summary >
16
16
<div >
17
17
<slot />
@@ -36,16 +36,16 @@ const anchorHash = anchor.replace(/\s+/g, "-")
36
36
<style >
37
37
details {
38
38
margin-bottom: 1rem;
39
- border: 1px solid #ccc ;
40
- border-radius: 4px ;
39
+ border-radius: 27px ;
40
+ border: 1px solid #dadada ;
41
41
overflow: hidden;
42
42
color: var(--color-text-primary);
43
43
font-weight: 600;
44
44
padding-left: 0.3rem;
45
45
}
46
46
47
47
details:hover {
48
- border-color: var(--color-text-link);
48
+ /* border-color: var(--color-text-link); */
49
49
}
50
50
51
51
summary {
Original file line number Diff line number Diff line change @@ -204,12 +204,27 @@ pre {
204
204
205
205
table {
206
206
width : 100% ;
207
+ border-radius : 27px ;
207
208
padding : var (--padding-block ) 0 ;
208
209
margin : 0 ;
209
210
border-collapse : collapse;
210
211
background : # fff ;
211
212
line-height : 2 ;
212
- @apply text-primary font-text border-[1px ] border-solid border-border-primary;
213
+ @apply text-primary font-text border-none;
214
+ border-radius : 10px ;
215
+ position : relative;
216
+ }
217
+
218
+ table ::after {
219
+ content : "" ;
220
+ display : block;
221
+ position : absolute;
222
+ top : 0 ;
223
+ left : 0 ;
224
+ bottom : 0 ;
225
+ right : 0 ;
226
+ border-radius : 27px ;
227
+ border : 1px solid # dadada ;
213
228
}
214
229
215
230
table thead tr {
232
247
}
233
248
td ,
234
249
th {
235
- padding : 6 px ;
250
+ padding : 8 px 30 px ;
236
251
text-align : left;
252
+ font-size : 16px ;
237
253
}
238
254
239
255
pre {
@@ -249,7 +265,9 @@ blockquote {
249
265
padding : 1.25em 1.5rem ;
250
266
border-radius : 0 0.25rem 0.25rem 0 ;
251
267
line-height : 1.7 ;
252
- @apply border-0 border-l-[3px ] border-solid border-light bg-bg-offset;
268
+ @apply border-0 border-l-[29px ] border-solid border-[# FFF0DD ];
269
+ border-radius : 27px ;
270
+ background : # fff8f3 ;
253
271
}
254
272
255
273
img {
You can’t perform that action at this time.
0 commit comments