Skip to content

Commit

Permalink
dip styling
Browse files Browse the repository at this point in the history
  • Loading branch information
lassejaco committed Oct 3, 2024
1 parent c622761 commit 3b61fd2
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ export const Contribute = (props: ContributeProps) => {
</div>

<div className={`${indexCss['scrolling-text-background']}`}>
<InfiniteScroller nDuplications={2} speed="200s" reverse>
<InfiniteScroller nDuplications={2} speed="240s" reverse>
<p className="bold uppercase">Devcon Improvement Proposals&nbsp;</p>
</InfiniteScroller>
</div>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -171,10 +171,10 @@ export const Proposals = (props: ProposalsProps) => {
}

return (
<Label type={labelType} className="shrink-0">
<Label type={labelType} className={`!rounded-lg shrink-0`}>
<div className={css['label-content']}>
{/* <span>&#8226;</span> */}
<p className="shrink-0">{item.status.toUpperCase()}</p>
<p className="shrink-0 text-xs">{item.status.toUpperCase()}</p>
</div>
</Label>
)
Expand Down Expand Up @@ -208,7 +208,7 @@ export const Proposals = (props: ProposalsProps) => {
render: (item: DIP) => {
return item.tags
? item.tags.map(tag => (
<Label key={tag} type="neutral" className={css['tag']}>
<Label key={tag} type="neutral" className={`${css['tag']} !rounded-lg`}>
<p className="font-xs bold text-uppercase">{tag}</p>
</Label>
))
Expand Down

0 comments on commit 3b61fd2

Please sign in to comment.