@@ -21,27 +21,27 @@ table {
2121 border-collapse : collapse ;
2222}
2323
24- // Alternating Row Colors
25- tr .evenRow {
26- background-color : $table-row-even ;
27- }
28-
29- tr .oddRow {
30- background-color : $table-row-odd ;
31- }
3224
3325// Table Header & Cell Styling
3426th {
35- background-color : #5a3d8a ;
27+ background-color : $primary ;
3628 color : white ;
3729}
3830
3931th , td {
4032 padding : 10px ;
41- border-bottom : 1px solid #ccc ;
4233 text-align : left ;
4334}
4435
36+ tr {
37+ border-bottom : 1px solid #ccc ;
38+ }
39+
40+ tr :last-of-type {
41+ border-bottom-right-radius : 10px ;
42+ border-bottom : none ;
43+ }
44+
4545// Table Borders & Rounded Corners
4646th :first-of-type {
4747 border-top-left-radius : 10px ;
@@ -51,12 +51,13 @@ th:last-of-type {
5151 border-top-right-radius : 10px ;
5252}
5353
54- tr :last-of-type td :first-of-type {
54+ td :first-of-type {
5555 border-bottom-left-radius : 10px ;
56- }
5756
58- tr :last-of-type td :last-of-type {
57+ }
58+ td :last-of-type {
5959 border-bottom-right-radius : 10px ;
60+ border-bottom : none ;
6061}
6162
6263// Table Options Section
@@ -70,6 +71,7 @@ tr:last-of-type td:last-of-type {
7071 display : flex ;
7172 justify-content : space-between ;
7273 align-items : center ;
74+ margin-bottom : 20px ;
7375}
7476
7577// Text Colors for Status Indicators
@@ -99,7 +101,8 @@ span.red {
99101 background-color : white ;
100102 padding : -3px ;
101103 border-radius : 10px ;
102- border : 2px solid #5a3d8a ;
104+ height :fit-content ;
105+ border : 2px solid $primary ;
103106}
104107
105108.categoryRow {
@@ -131,10 +134,6 @@ span.red {
131134 margin-top : 10px ; // 🟢 FIX: Added spacing so it doesn’t overlap
132135}
133136
134- // Page Wrapper & Title
135- .pageWrapper {
136- padding : 20px ;
137- }
138137
139138.gradebookTitle {
140139 text-align : center ;
@@ -144,7 +143,7 @@ span.red {
144143
145144// 🟢 FIX: "Back to Course" Button Alignment
146145.backToCourseButton {
147- background-color : #5a3d8a ;
146+ background-color : $primary ;
148147 color : white ;
149148 padding : 8px 15px ;
150149 border-radius : 30px ;
@@ -157,7 +156,7 @@ span.red {
157156
158157// Section Headers (Purple Background)
159158.sectionHeader {
160- background-color : #5a3d8a ;
159+ background-color : $primary ;
161160 color : white ;
162161 padding : 12px 20px ;
163162 border-radius : 8px 8px 0 0 ;
0 commit comments