fix notification spacing
This commit is contained in:
parent
388c7d0240
commit
4d444d1286
|
@ -1,6 +1,7 @@
|
||||||
.item {
|
.item {
|
||||||
align-items: flex-start;
|
align-items: flex-start;
|
||||||
margin-bottom: 0 !important;
|
margin-bottom: 0 !important;
|
||||||
|
padding-bottom: 0 !important;
|
||||||
}
|
}
|
||||||
|
|
||||||
.upvote {
|
.upvote {
|
||||||
|
|
|
@ -14,7 +14,7 @@ export default function ItemJob ({ item, toc, rank, children }) {
|
||||||
<>
|
<>
|
||||||
{rank
|
{rank
|
||||||
? (
|
? (
|
||||||
<div className={`${styles.rank} align-self-center`}>
|
<div className={`${styles.rank} pb-2 align-self-center`}>
|
||||||
{rank}
|
{rank}
|
||||||
</div>)
|
</div>)
|
||||||
: <div />}
|
: <div />}
|
||||||
|
|
|
@ -47,7 +47,7 @@ a.link:visited {
|
||||||
display: flex;
|
display: flex;
|
||||||
justify-content: flex-start;
|
justify-content: flex-start;
|
||||||
min-width: 0;
|
min-width: 0;
|
||||||
margin-bottom: .45rem;
|
padding-bottom: .45rem;
|
||||||
}
|
}
|
||||||
|
|
||||||
.item .companyImage {
|
.item .companyImage {
|
||||||
|
|
|
@ -19,9 +19,9 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.invite {
|
.invite {
|
||||||
margin-bottom: .5rem;
|
padding-bottom: .5rem;
|
||||||
}Í
|
}
|
||||||
|
|
||||||
.invite:last-child {
|
.invites .invite:last-child {
|
||||||
margin-bottom: 0;
|
padding-bottom: 0;
|
||||||
}
|
}
|
Loading…
Reference in New Issue