Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ $shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
align-items: center;

img {
max-width: 100%;
max-width: 95%;
border-radius: $border-radius;
box-shadow: $shadow;
border: 2px solid $accent-color;
Expand All @@ -59,6 +59,13 @@ $shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
&:hover {
transform: scale(1.02);
}
@media(max-width: 390px) {
padding: 0.1rem;
width: 85%;


}

}
}

Expand All @@ -69,17 +76,31 @@ $shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
padding: 2rem;
border-radius: $border-radius;
box-shadow: $shadow;
display: flex;
display:inline-flexbox;
width:100%;
flex-direction: column;
justify-content: space-between;

@media(max-width: 480px) {
padding: 1.0rem;
margin-top: 2rem;

}
@media(max-width: 390px) {
padding: 0rem;
width:95%;
margin-left: 9px;
margin-top: 2rem;

}
}

.detailsTable {
width: 100%;
// margin-bottom: 2rem;
margin-bottom: 2rem;

th, td {
padding: 0.75rem;
padding: 0.95rem;
text-align: left;
}

Expand Down Expand Up @@ -108,6 +129,10 @@ $shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
font-weight: 600;
font-size: 1rem;

@media(max-width: 390px) {
padding: 0.1rem;
margin-left: 2px;
}
svg {
font-size: 1.25rem;
}
Expand All @@ -116,7 +141,7 @@ $shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
.downloadBtn {
background-color: $accent-color;
color: white;
padding: 0.7rem 1.3rem;
padding: 0.5rem 1.2rem;
font-size: 1rem;
font-weight: 600;
border: none;
Expand All @@ -132,9 +157,10 @@ $shadow: 0 8px 24px rgba(0, 0, 0, 0.2);

@media (max-width: 480px) {
flex-direction: column;
align-items: flex-start;
align-items:center;
gap: 1rem;
}

}

.loadingContainer, .errorContainer {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ const Events = () => {
const analyticsPath = "/profile/events/Analytics";
const createCertificatesPath = "/profile/events/createCertificates";
const viewCertificatesPath = "/profile/events/viewCertificates";


const analyticsAccessRoles = [
"PRESIDENT",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.participatedEvents {
color: #ffffff;
color: #e2e2e2;
font-family: rubik;
font-weight: 300;
display: flex;
Expand Down