Skip to content

Commit

Permalink
fix: make overriden student page styles important
Browse files Browse the repository at this point in the history
  • Loading branch information
nick-bolas committed Sep 3, 2024
1 parent c8389fa commit 8a7e82c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions app/students/[shortcode]/page.module.scss
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
.container {
padding: 0;
padding: 0 !important;
}

.SeparatorRoot {
Expand All @@ -15,7 +15,7 @@
}

.Separator {
height: initial;
height: initial !important;
}

.longDetailsCard {
Expand Down
4 changes: 2 additions & 2 deletions app/students/[shortcode]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,8 @@ import RestrictedArea from "@/components/rbac/RestrictedArea"
import RestrictedAreaStudent from "@/components/rbac/RestrictedAreaStudent"
import prisma from "@/lib/db"

import styles from "./page.module.scss"

import { OpportunityType, Role } from "@prisma/client"
import { Box, Card, Flex, Heading, Separator, Text } from "@radix-ui/themes"
import { format } from "date-fns"
Expand All @@ -17,8 +19,6 @@ import React from "react"
import { BsEnvelope, BsFileEarmarkText, BsGithub, BsGlobe, BsLinkedin } from "react-icons/bs"
import { IconType } from "react-icons/lib"

import styles from "./page.module.scss"

const linkIconSize = "25"

/**
Expand Down

0 comments on commit 8a7e82c

Please sign in to comment.