File tree 5 files changed +10
-13
lines changed
5 files changed +10
-13
lines changed Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import { Icon } from 'astro-icon/components';
4
4
---
5
5
6
6
<a target =" _blank" href ={ url } aria-label ={ url_name } >
7
- <button class =" btn btn-outline btn-md mr-2 " >
7
+ <button class =" btn btn-outline btn-md" >
8
8
<Icon name ={ icon } class =" w-6 h-6" aria-label ={ url_name } />{ url_name }
9
9
</button >
10
10
</a >
Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ const contact = await Astro.glob('../pages/contact/*.md');
88
88
</AccordionLayout >
89
89
90
90
<AccordionLayout title ={ ' Contact' } icon ={ ' carbon:location-person' } >
91
- <div class =" flex flex-wrap content-around gap-4 justify-center" >
91
+ <div class =" flex flex-wrap content-around gap-6 justify-center" >
92
92
{
93
93
contact .map ((item ) => {
94
94
return (
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ import { Icon } from 'astro-icon/components';
3
3
import * as about from ' ../pages/about/about.md' ;
4
4
---
5
5
6
- <header class =" mx-auto pt-12 pb-2 relative" >
6
+ <header class =" mx-auto pt-12 pb-2 relative px-4 " >
7
7
<article
8
8
class =" flex flex-col md:flex-col items-center gap-4 w-full max-w-2xl"
9
9
>
Original file line number Diff line number Diff line change @@ -8,9 +8,9 @@ const { title, icon } = Astro.props;
8
8
<div class =" collapse collapse-arrow ease-in-out duration-300" >
9
9
<input aria-label ={ title } type =" checkbox" />
10
10
<div class =" collapse-title font-extrabold tracking-tight md:text-2xl" >
11
- <div class =" flex" >
11
+ <div class =" flex items-center " >
12
12
<Icon name ={ icon } class =" w-8 h-8 mr-4" />
13
- { title }
13
+ < span > { title } </ span >
14
14
</div >
15
15
</div >
16
16
<div class =" collapse-content" >
Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ import { Icon } from 'astro-icon/components';
76
76
>
77
77
</div >
78
78
<main
79
- class =" mx-auto flex-grow max-h-[90vh] md:max-h-[70vh] max-w-3xl overflow-y-scroll py-2 grid w-[95vw]"
79
+ class =" mx-auto flex-grow max-h-[90vh] md:max-h-[70vh] max-w-3xl py-2 grid w-[95vw]"
80
80
>
81
81
<div class =" container" >
82
82
<Container />
@@ -100,22 +100,19 @@ import { Icon } from 'astro-icon/components';
100
100
101
101
@media only screen and (max-width: 480px) {
102
102
* {
103
- font-size: 12px ;
103
+ font-size: 14px ;
104
104
}
105
105
}
106
106
107
- .overflow-y-scroll ::-webkit-scrollbar {
107
+ ::-webkit-scrollbar {
108
108
width: 3px;
109
+ scrollbar-width: 1px;
109
110
}
110
111
111
- .overflow-y-scroll ::-webkit-scrollbar-thumb {
112
+ ::-webkit-scrollbar-thumb {
112
113
background-color: oklch(var(--s));
113
114
}
114
115
115
- .overflow-y-scroll {
116
- scrollbar-width: 1px;
117
- }
118
-
119
116
@media (max-width: 768px) {
120
117
.container {
121
118
flex-direction: column;
You can’t perform that action at this time.
0 commit comments