Skip to content

Commit

Permalink
style: reshow tape (#80)
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinWu098 authored Mar 31, 2024
1 parent 57dff5c commit e5bb67c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import { Modal } from "../Speakers/Modal/Modal";
import tape_black from "../../assets/graphics/speakers/tape_black.svg";
import tape_white from "../../assets/graphics/speakers/tape_white.svg";

export const Profile = ({ person, odd, tape: showTape }) => {
export const Profile = ({ person, odd, showTape }) => {
const { photo, name, role } = person;

return (
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@
flex-direction: column;
justify-content: center;
cursor: inherit;
position: relative;

width: 100%;
height: fit-content;
Expand Down Expand Up @@ -74,10 +75,10 @@
}

.tape {
position: absolute;
width: 66%;
z-index: 5;

// position: absolute;
top: -5%;
left: 50%;
transform: translateX(-50%);
Expand Down

0 comments on commit e5bb67c

Please sign in to comment.