File tree 5 files changed +11
-10
lines changed
5 files changed +11
-10
lines changed Original file line number Diff line number Diff line change 51
51
steps :
52
52
- name : Deploy to GitHub Pages
53
53
id : deployment
54
- uses : actions/deploy-pages@v4
54
+ uses : actions/deploy-pages@v4
Original file line number Diff line number Diff line change @@ -5,11 +5,11 @@ import ProjectCard from "./ProjectCard"
5
5
export default function AllProjects ( ) {
6
6
return (
7
7
< div className = "container flex-full-centered" style = { { marginBottom : "var(--ifm-spacing-3xl)" } } >
8
- < ul className = "row" >
8
+ < ul className = "row--no-gutters" style = { { paddingLeft : "0" } } >
9
9
{ projectsDetails . map ( ( project , index ) => {
10
10
return (
11
11
< li className = "projects-list" key = { index } >
12
- < div className = "col" >
12
+ < div className = "col" style = { { padding : "0 0" } } >
13
13
< ProjectCard project = { project } />
14
14
</ div >
15
15
</ li >
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ export default function ProjectCard({ project }): JSX.Element {
5
5
const base = `${ prefix } ${ project . name } `
6
6
return (
7
7
< div className = "container" >
8
- < div className = "row row--no-gutters horizontally-centered " >
8
+ < div className = "row row--no-gutters" >
9
9
< div
10
10
className = { "col col--6 col" + " " + styles . project_text }
11
11
>
Original file line number Diff line number Diff line change @@ -16,7 +16,6 @@ div .project_title {
16
16
}
17
17
18
18
.project_description {
19
- padding : var (--ifm-spacing-md ) var (--ifm-spacing-xl );
20
19
text-align : center;
21
20
}
22
21
@@ -46,12 +45,13 @@ div .project_title {
46
45
letter-spacing : 0.25px ;
47
46
text-align : center;
48
47
margin-bottom : var (--ifm-spacing-lg );
49
- padding : var (--ifm-spacing-lg ) var (--ifm-spacing-2xl );
48
+ padding : var (--ifm-spacing-lg ) var (--ifm-spacing-xl );
50
49
}
51
50
52
- .col_project_text p {
51
+ .project_text {
53
52
background-color : white;
54
53
text-align : justify;
54
+ padding : var (--ifm-spacing-lg ) var (--ifm-spacing-2xl )
55
55
}
56
56
57
57
.project_picture_jupyter {
Original file line number Diff line number Diff line change 92
92
93
93
ul {
94
94
padding-left : 0 ;
95
+ margin-left : 0 ;
95
96
}
96
97
97
98
.container {
211
212
line-height : 150% ;
212
213
line-height : 20px ;
213
214
letter-spacing : 0.25px ;
214
- text-align : center;
215
+ padding : 0 var ( --ifm-spacing-2xl )
215
216
}
216
217
217
218
li {
@@ -641,6 +642,6 @@ a.menu__link:active {
641
642
642
643
.projects-list {
643
644
list-style-type : none;
644
- padding : none ;
645
- width : 100 % ;
645
+ padding-left : 0 ;
646
+ margin-left : 0 ;
646
647
}
You can’t perform that action at this time.
0 commit comments