Skip to content

Commit

Permalink
Changed live resume link text design
Browse files Browse the repository at this point in the history
  • Loading branch information
webdevsk committed Oct 7, 2023
1 parent c530d8f commit 6b9788d
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 9 deletions.
6 changes: 2 additions & 4 deletions src/templates/Template2.css
Original file line number Diff line number Diff line change
Expand Up @@ -113,12 +113,10 @@ span {
}
}

.title:not(.resume-title) {
.title {
@apply inline-grid w-5 place-items-center rounded-full bg-accent text-white;
}
.resume-title {
@apply px-2;
}

svg {
@apply text-xs;
}
Expand Down
11 changes: 6 additions & 5 deletions src/templates/Template2.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,10 @@ import {
faPhone,
faEnvelope,
faLocationDot,
faGlobe,
} from "@fortawesome/free-solid-svg-icons"
// import { faPhone } from ""
library.add(fab, faPhone, faEnvelope, faLocationDot)
library.add(fab, faPhone, faEnvelope, faLocationDot, faGlobe)

const Template = ({ printMode }) => {
const nameColRef = useRef(null)
Expand Down Expand Up @@ -125,12 +126,12 @@ const Template = ({ printMode }) => {
</a>
</div>
))}
</div>
<div className={`row ${!printMode ? "!hidden" : ""}`}>
<div className="col">
<p className="resume-title title">Resume Live Version:</p>
<p className="title">
<FontAwesomeIcon icon={`fa-solid fa-globe`} />
</p>
<a href={data.liveLink}>
<p>{data.liveLink}</p>
<p>Resume Live Version: {data.liveLink}</p>
</a>
</div>
</div>
Expand Down

0 comments on commit 6b9788d

Please sign in to comment.