Skip to content

Commit

Permalink
Feature/fg 61 (#746)
Browse files Browse the repository at this point in the history
* just package lock

* changed styling of the dialoge progress bar for uploading photos

* fixed styling for navbar when in mobile view

---------

Co-authored-by: endre2112 <[email protected]>
  • Loading branch information
SimpChip and endre2112 authored Sep 9, 2023
1 parent 7a290b4 commit 4a630d2
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 153 deletions.
143 changes: 0 additions & 143 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 6 additions & 4 deletions src/components/Header/Header.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -28,19 +28,21 @@
}

.menuLink {

padding: 0.2rem 0.5rem;
margin-top: 0.5rem;
display: flex;
align-items: center;
justify-content: space-between;
width: 90vw;
width: 100%;
box-shadow: rgba(0, 0, 0, 0.4) 0px 2px 3px 0px;

}

.menuLink > * {
margin: 0 0.5rem;
.menuLink:hover {
scale: 1.01;
}


.navContainer {
font-size: 1.5rem;
display: none;
Expand Down
10 changes: 4 additions & 6 deletions src/forms/PhotoUploadForm.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -303,21 +303,19 @@ const PhotoUploadForm: FC<Props> = ({ initialValues }) => {
display: "flex",
flexDirection: "column",
alignItems: "center",
justifyContent: "center",
width: "20rem",
paddingX: 8,
justifyContent: "space-around",
paddingX: 3,
}}
>
<Typography
sx={{
fontSize: "larger",
paddingBottom: 2,
}}
>
{progress === 100 ? "Velykket!" : "Send en vits til Endre 🦙"}
{progress === 100 ? "Velykket!" : "Laster opp! 🦙"}
</Typography>
<BorderLinearProgress
sx={{ width: "20rem" }}
sx={{ width: "25vw" }}
variant="determinate"
value={progress}
/>
Expand Down

0 comments on commit 4a630d2

Please sign in to comment.