Skip to content

Commit

Permalink
Tweak team members card & modal sizes to fit cards better in smaller …
Browse files Browse the repository at this point in the history
…screens
  • Loading branch information
nasaownsky committed Nov 26, 2024
1 parent 2cd42d5 commit 8271073
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions publisher/src/components/AdminPanel/AdminPanel.styles.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ export const ModalWrapper = styled.div``;

export const ModalContainer = styled.div<{ offScreen?: boolean }>`
height: 90vh;
width: 50vw;
width: 60vw;
background: ${palette.solid.white};
border-radius: 4px;
padding: 32px;
Expand Down Expand Up @@ -249,7 +249,7 @@ export const InputLabelWrapper = styled.div<{
input,
input[type="button"] {
width: 100%;
min-width: 210px;
min-width: 190px;
font-size: 0.8rem;
font-weight: 400;
line-height: 1rem;
Expand Down Expand Up @@ -346,7 +346,7 @@ export const TeamMemberCard = styled.div<{
${typography.sizeCSS.normal}
display: flex;
flex-direction: column;
width: 250px;
width: 230px;
align-items: flex-start;
justify-content: center;
border: 1px solid ${palette.highlight.grey5};
Expand All @@ -358,7 +358,7 @@ export const TeamMemberCard = styled.div<{
${({ deleted }) => deleted && `background: ${palette.gradient.lightred};`}
input[type="button"] {
width: 210px;
width: 190px;
}
`;

Expand Down

0 comments on commit 8271073

Please sign in to comment.