Skip to content

Commit b96783f

Browse files
authored
Merge branch 'dev' into minor-changes
2 parents 9429092 + d23f895 commit b96783f

4 files changed

Lines changed: 10 additions & 7 deletions

File tree

client/src/components/ScuntTitle/ScuntTitle.jsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,12 @@ import { getScuntSettings } from '../../state/scuntSettings/saga';
99
import { getScuntTeams } from '../../state/scuntTeams/saga';
1010
const { axios } = useAxios();
1111
import './ScuntTitle.scss';
12+
import bannerphoto from '../../assets/scunt/scunt-photo.jpg';
1213

1314
export const ScuntTitle = () => {
1415
return (
1516
<div className="scunt-title-container">
16-
<img className="scunt-title-image" src="\src\assets\scunt\scunt-photo.jpg"></img>
17+
<img className="scunt-title-image" src={bannerphoto}></img>
1718
<div className="scunt-title-gradient"></div>
1819
<h1 className="scunt-home-title-text">
1920
SKULE<span className="trademark"></span>

client/src/components/ScuntTitle/ScuntTitle.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,9 +85,9 @@
8585
padding: 20px;
8686
border-radius: 15px;
8787
background-color: var(--mikado);
88-
min-width: 130px;
88+
// min-width: 130px;
8989
@media only screen and (max-width: 1000px) {
90-
min-width: 90px; //!
90+
// min-width: 90px; //!
9191
padding: 10px; //!
9292
h3 {
9393
font-size: 15px !important;

client/src/pages/Profile/PageProfileFrosh.jsx

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,10 +101,10 @@ const PageProfileFrosh = () => {
101101
<>
102102
<ProfilePageFroshHeader editButton={true} />
103103

104-
{/* Mobile-only QR at top */}
104+
{/* Mobile-only QR at top
105105
<div className="profile-qr-mobile mobile-only">
106106
<ProfilePageQRCode />
107-
</div>
107+
</div> */}
108108

109109
<div className="profile-info-row">
110110
<div className="profile-info-row-left">
@@ -557,7 +557,9 @@ export const ProfilePageScuntTeam = () => {
557557
<div className="profile-page-scunt-team profile-page-side-section">
558558
<h3>YOUR SKULE™ HUNT TEAM:</h3>
559559
<h2>
560-
<b>{scuntTeam ? scuntTeam.name : null}</b>
560+
<b>
561+
Team {scuntTeam ? scuntTeam.number : null}: {scuntTeam ? scuntTeam.name : null}
562+
</b>
561563
</h2>
562564
</div>
563565
);

client/src/util/scunt-constants.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ export const rules = {
101101
},
102102
{
103103
title: 'The Royal Wedding',
104-
sub: 'The Royal Wedding is the wedding to bring Godiva’s Crown and Mr. Blue & Gold together eternally. The list items for the Royal Wedding will only be accepted by the bride and groom, as well as the SubComm Chairs. The wedding items and submissions for these items will be opened starting at 9:00 PM ish. Each group that wants to claim an item must bring the participating F!rosh and the item to the bride and groom, or SubComm chairs. The wedding will take place at 10:00 PM. Only the F!rosh approved beforehand may participate in the wedding. Any F!rosh that interferes during the wedding will be removed from the scene.',
104+
sub: 'The Royal Wedding is the wedding to bring Godiva’s Crown and Mr. Blue & Gold together eternally. The list items for the Royal Wedding will only be accepted by the bride and groom, as well as the SubComm Chairs. The wedding items and submissions for these items will be opened starting at 8:00 PM ish. Each group that wants to claim an item must bring the participating F!rosh and the item to the bride and groom, or SubComm chairs. The wedding will take place at 9:00 PM. Only the F!rosh approved beforehand may participate in the wedding. Any F!rosh that interferes during the wedding will be removed from the scene.',
105105
},
106106
{
107107
title: 'Winning',

0 commit comments

Comments
 (0)