Skip to content

Commit

Permalink
Merge pull request #155 from UAlberta-CMPUT401/feature/ui-changes
Browse files Browse the repository at this point in the history
Feature/UI changes
  • Loading branch information
chasejohnson626 authored Dec 3, 2024
2 parents d286fdd + ac13428 commit fae4441
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,12 @@

.dialogCard {
position: relative;
padding: 15px;
padding: 10px;
max-width: 800px;
width: 100%;
height: auto;
overflow: auto;
border-radius: 15px;
border-radius: 10px;
background-color: #0000;
}

Expand Down
3 changes: 2 additions & 1 deletion frontend/src/app/pages/EventDetails/EventDetails.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -259,9 +259,10 @@ const EventDetails: React.FC = () => {
{signedUp && (
<Typography
variant="body2"
color='textSecondary'
className={styles.centeredFlex}
gutterBottom
style={{ fontStyle: 'italic', color: '#ffffff97' }}
style={{ fontStyle: 'italic'}}
align='center'
>
Note: To cancel signup, please contact admin.
Expand Down
4 changes: 3 additions & 1 deletion frontend/src/app/pages/Overview/Overview.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -149,9 +149,11 @@ const OverviewPage: React.FC = () => {
{signup.notes && (
<Typography
variant="body2"
color='textSecondary'
className={styles.centeredFlex}
gutterBottom
style={{ fontStyle: 'italic', color: '#6c757d' }}
style={{ fontStyle: 'italic'}}
align='center'
>
Note: {signup.notes}
</Typography>
Expand Down

0 comments on commit fae4441

Please sign in to comment.