Skip to content

Commit

Permalink
fix: LMS footer on course choose
Browse files Browse the repository at this point in the history
  • Loading branch information
igobranco committed Jan 10, 2025
1 parent 2ef4fc3 commit 004f024
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,16 @@ footer {
flex-grow: 1;

a, a:visited {
color: $footer-link-color;
// Important is need to force color on /course_modes/choose/<course_id> page.
color: $footer-link-color !important;
text-transform: inherit;
line-height: 1.8rem;
font-size: 0.95rem;

&:hover {
text-decoration: underline;
// Need to fix on /course_modes/choose/<course_id> page.
text-decoration: underline !important;
border-bottom-style: none;
}
.icon {
font-size: 25px;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,16 @@ footer {
flex-grow: 1;

a, a:visited {
color: $footer-link-color;
// Important is need to force color on /course_modes/choose/<course_id> page.
color: $footer-link-color !important;
text-transform: inherit;
line-height: 1.8rem;
font-size: 0.95rem;

&:hover {
text-decoration: underline;
// Need to fix on /course_modes/choose/<course_id> page.
text-decoration: underline !important;
border-bottom-style: none;
}
.icon {
font-size: 25px;
Expand Down

0 comments on commit 004f024

Please sign in to comment.