A bit of styling

This commit is contained in:
Daniel Kluge 2022-06-13 15:41:29 +02:00
parent 81bf79e95e
commit 6dbbd2b70d
2 changed files with 22 additions and 10 deletions

View File

@ -53,7 +53,7 @@ const ProjectModal: NextPage = () => {
</select>
);
return <div className={styles.pageSelector}>{prev}{currentPage > 0 ? <span>&nbsp;&nbsp;|&nbsp;&nbsp;</span> : null}{select}{currentPage < currentContent.entries.length ? <span>&nbsp;&nbsp;|&nbsp;&nbsp;</span> : null}{next}</div>;
return <div className={styles.pageSelector}>{prev}<span style={{visibility: currentPage > 0 ? "visible" : "hidden"}}>&nbsp;&nbsp;|&nbsp;&nbsp;</span>{select}<span style={{visibility: currentPage < currentContent.entries.length ? "visible" : "hidden"}}>&nbsp;&nbsp;|&nbsp;&nbsp;</span>{next}</div>;
})();
return <div className={styles.modal}>

View File

@ -41,7 +41,7 @@
z-index: 100;
}
/* Mobile possitioning */
/* Non-mobile positioning */
@media all and (min-width: 1050px) {
.modalClose {
position: relative;
@ -96,8 +96,8 @@
}
.pageSelector {
display: flex;
flex-direction: row;
display: grid;
grid-template-columns: 1fr max-content max-content max-content 1fr;
font-family: sans-serif;
}
@ -120,14 +120,26 @@
text-decoration: underline;
}
.leftSelectSpace, .rightSelectSpace {
flex-grow: 2;
}
.leftSelectSpace {
text-align: right;
justify-self: right;
}
.rightSelectSpace {
text-align: left;
justify-self: left;
}
/* On mobile we only want to show the html select */
@media all and (max-width: 500px) {
.leftSelectSpace, .rightSelectSpace, .pageSelector span {
display: none;
}
.pageSelector select {
margin-left: auto;
margin-right: auto;
display: block;
}
.pageSelector {
display: block;
}
}