Skip to content

Commit

Permalink
명함 정보 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
kichan05 committed Feb 12, 2024
1 parent 01c060f commit 8a67ca9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/component/BusunessCard.js
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ export const BusinessCard = ({onMouseMove, onMouseOut, cardState}) => {
<div className="tel-wrap">
<div className="tel-title title">학력</div>
<div className="tel-content content">선린인터넷고등학교</div>
<div className="tel-content content">소프트웨어과 재학 (2021~)</div>
<div className="tel-content content">소프트웨어과 졸업 (2021~2023)</div>
</div>
<div className="mail-wrap">
<div className="mail-title title">
Expand Down
3 changes: 3 additions & 0 deletions src/component/Resize.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@ import {useEffect} from "react";
export const Resize = () => {
const handleResize = () => {
const vh = window.innerHeight / 100;
const vw = window.innerWidth / 100;

document.documentElement.style.setProperty("--vh", `${vh}px`)
document.documentElement.style.setProperty("--vw", `${vw}px`)
}
useEffect(() => {
handleResize()
Expand Down

0 comments on commit 8a67ca9

Please sign in to comment.