Skip to content

Commit

Permalink
Replaced emoji for special page nav link with text
Browse files Browse the repository at this point in the history
  • Loading branch information
mmmavis committed Aug 21, 2024
1 parent dda5f64 commit e96deb6
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions source/sass/components/multipage-nav.scss
Original file line number Diff line number Diff line change
Expand Up @@ -37,19 +37,27 @@
}
}

.multipage-login-restricted::after,
.multipage-groups-restricted::after,
.multipage-password-restricted::after,
.multipage-draft::after {
color: $dark-red;
font-size: 0.8rem;
}

.multipage-login-restricted::after {
content: "🙈";
content: "(for login users only)";
}

.multipage-groups-restricted::after {
content: "👥";
content: "(for specific usergroups only)";
}

.multipage-password-restricted::after {
content: "🔒";
content: "(password protected)";
}

.multipage-draft::after {
content: "🐣";
content: "(draft)";
}
}

0 comments on commit e96deb6

Please sign in to comment.