Skip to content

Commit d000377

Browse files
authored
Merge pull request #28 from dgomie/dashboard-styling
Dashboard styling
2 parents 97b955a + 6806785 commit d000377

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

src/components/button/Button.module.css

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,15 @@
6868
opacity: 0.7;
6969
}
7070

71+
.gray {
72+
background-color: gray;
73+
color: white;
74+
}
75+
76+
.gray:hover {
77+
opacity: 0.7;
78+
}
79+
7180
.black {
7281
background-color: black;
7382
color: white;

src/components/legionHeader/LegionHeader.module.css

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,19 @@
2424
padding: 0 0 1rem 0;
2525
background-color: white;
2626
border-radius: 5px;
27+
position: relative; /* Add this */
2728
}
2829

2930
.gearIcon {
3031
cursor: pointer;
3132
width: auto;
33+
position: absolute; /* Add this */
34+
top: 0.5rem; /* Adjust as needed */
35+
right: 0.5rem; /* Adjust as needed */
36+
}
37+
38+
.gearIcon:hover {
39+
opacity: 0.7;
3240
}
3341

3442
@media (min-width: 768px) {

0 commit comments

Comments
 (0)