Skip to content

Commit

Permalink
Pequeño error en sass
Browse files Browse the repository at this point in the history
  • Loading branch information
clara7227 committed May 8, 2024
2 parents 604a1cd + f46970a commit 91f1f70
Show file tree
Hide file tree
Showing 9 changed files with 2,025 additions and 1,616 deletions.
3,212 changes: 1,609 additions & 1,603 deletions app/main.scss

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions app/research/page.js
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ export default function Research() {
<div className="papers">
{papersFiltered
.slice(0, papersToShow)
.map(({ date, doi, content }, ind) => {
.map(({ date, doi, author, title, journal }, ind) => {
return (
<div key={ind} className="paper">
<div className="paper_main">
Expand All @@ -109,12 +109,12 @@ export default function Research() {
</div>
<div className="paper_content">
<div className="paper_title">
<h2></h2>
<h4>{title}</h4>
</div>
<div
dangerouslySetInnerHTML={{ __html: content }}

className="paper_subtitle"
></div>
>{author}. {journal}</div>
</div>
</div>
<div className="links">
Expand Down
4 changes: 4 additions & 0 deletions app/sass/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -940,6 +940,7 @@ main {
margin-right: $spacing_sm;
border-radius: 16px;
stroke: 2px solid $ca-blue-900;
@apply text-black;

h5 {
.year {
Expand All @@ -957,6 +958,9 @@ main {
.paper_content {
gap: $spacing_md;
flex-grow: 1;
.paper_title{
@apply text-black;
}
.paper_subtitle {
padding-bottom: $spacing_md;
}
Expand Down
3 changes: 3 additions & 0 deletions app/sass/partials/_publications.sass
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@

.paper_date
.paper_main
.paper_title
h4
@apply text-black
.paper_subtitle
@apply text-black
.paper_doi
Expand Down
11 changes: 4 additions & 7 deletions constants/publications.bib
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,7 @@ @article{10.1109/ACCESS.2022.3159674
}

@ARTICLE{10.18608/jla.2022.7415,
title = "The curious case of centrality measures: A large-scale empirical
investigation",
title = "The curious case of centrality measures: A large-scale empirical investigation",
author = "Saqr, Mohammed and López-Pernas, Sonsoles",
journal = "Journal of Learning Analytics",
volume = 9,
Expand All @@ -102,10 +101,8 @@ @ARTICLE{10.18608/jla.2022.7415
doi = {10.18608/jla.2022.7415}
}
@article{10.1109/ACCESS.2022.3157609,
title = "Computing education research compiled: Keyword trends, building
blocks, creators, and dissemination",
author = "Apiola, Mikko and Saqr, Mohammed and López-Pernas, Sonsoles and
Tedre, Matti",
title = "Computing education research compiled: Keyword trends, building blocks, creators, and dissemination",
author = "Apiola, Mikko and Saqr, Mohammed and López-Pernas, Sonsoles and Tedre, Matti",
journal = "IEEE Access",
volume = 10,
pages = {27041--27068},
Expand Down Expand Up @@ -425,7 +422,7 @@ @article{Vel_squez_2020
url = {http://dx.doi.org/10.3390/s20102899}
}
@inproceedings{Lopez-PernasJGB20,
title = {Ediphy: {A} modular and extensible open-source web authoring tool for the creation of interactive learning resources},
title = {Ediphy: A modular and extensible open-source web authoring tool for the creation of interactive learning resources},
author = {Sonsoles López-Pernas and Alfonso Jiménez and Aldo Gordillo and Enrique Barra and Lourdes Marco and Juan Quemada},
year = 2020,
booktitle = {Proceedings of the 16th International Conference on Intelligent Environments, {IE} 2020, Madrid, Spain, July 20-23, 2020},
Expand Down
2 changes: 1 addition & 1 deletion constants/publications.js

Large diffs are not rendered by default.

Loading

0 comments on commit 91f1f70

Please sign in to comment.