- implement actions section

- implement settings section
This commit is contained in:
Amruth Pillai
2020-07-12 12:55:08 +05:30
parent 8972a96afd
commit f468ca73c3
25 changed files with 327 additions and 143 deletions

View File

@ -40,6 +40,7 @@ const ResumeViewer = ({ id }) => {
<title>{resume.name} | Reactive Resume</title>
<link rel="canonical" href={`https://rxresu.me/r/${id}`} />
</Helmet>
<div
className={styles.page}
style={{ backgroundColor: resume.metadata.colors.background }}

View File

@ -1,13 +1,15 @@
.container {
background-color: #212121;
@apply h-screen overflow-scroll col-span-5 flex flex-col items-center;
}
@media screen {
.container {
background-color: #212121;
@apply col-span-5 flex flex-col items-center;
}
.page {
width: 800px;
@apply block my-16 rounded shadow-2xl;
}
.footer {
@apply mb-16 text-white text-center opacity-50 leading-loose;
.page {
width: 800px;
@apply block my-16 rounded shadow-2xl;
}
.footer {
@apply mb-16 text-white text-center opacity-50 leading-loose;
}
}