Skip to content

Commit

Permalink
allignment of sign edit and project image
Browse files Browse the repository at this point in the history
  • Loading branch information
kartikpaliwal committed Mar 4, 2024
1 parent 26c4911 commit 40fa18b
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 5 deletions.
2 changes: 2 additions & 0 deletions src/fragmentarium/ui/info/ResearchProjects.sass
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
.ResultList
ul
padding: 0
margin: 0

li
list-style: none
padding-bottom: .5rem
8 changes: 4 additions & 4 deletions src/fragmentarium/ui/info/ResearchProjects.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ export function ProjectList({
projects: readonly ResearchProject[]
}): JSX.Element {
return (
<ul className={'ResultList'}>
<div className={'ResultList'}>
{projects.map((project, index) => (
<li key={index}>
<div key={index}>
<ExternalLink
href={project.url}
aria-label={`Link to ${project.name} project`}
Expand All @@ -23,8 +23,8 @@ export function ProjectList({
alt={project.name}
/>
</ExternalLink>
</li>
</div>
))}
</ul>
</div>
)
}
2 changes: 1 addition & 1 deletion src/fragmentarium/ui/info/ScriptSelection.sass
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
&__button-wrapper
display: flex
align-items: flex-start
justify-content: space-between
justify-content: flex-end

button
margin-left: .5em

0 comments on commit 40fa18b

Please sign in to comment.